home *** CD-ROM | disk | FTP | other *** search
/ Chip 1998 September / CHIP Eylül 1998.iso / Slackwar / docs / PCMCIA-HOWTO < prev    next >
Text File  |  1997-03-02  |  102KB  |  2,220 lines

  1.   Linux PCMCIA HOWTO
  2.   David Hinds, dhinds@hyper.stanford.edu
  3.   v2.5, 19 February 1998
  4.  
  5.   This document describes how to install and use PCMCIA Card Services
  6.   for Linux, and answers some frequently asked questions.  The latest
  7.   version of this document can always be found at
  8.   <ftp://hyper.stanford.edu/pub/pcmcia/doc>.  An HTML version is at
  9.   <http://hyper.stanford.edu/HyperNews/get/pcmcia/home.html>.
  10.  
  11.   1.  General information and hardware requirements
  12.  
  13.   1.1.  Introduction
  14.  
  15.   Card Services for Linux is a complete PCMCIA support package.  It
  16.   includes a set of loadable kernel modules that implement a version of
  17.   the PCMCIA Card Services applications program interface, a set of
  18.   client drivers for specific cards, and a card manager daemon that can
  19.   respond to card insertion and removal events, loading and unloading
  20.   drivers on demand.  It supports ``hot swapping'' of PCMCIA cards, so
  21.   cards can be inserted and ejected at any time.
  22.  
  23.   This software is continually under development.  It probably contains
  24.   bugs, and should be used with caution.  I'll do my best to fix
  25.   problems that are reported to me, but if you don't tell me, I may
  26.   never know.  If you use this code, I hope you will send me your
  27.   experiences, good or bad!
  28.  
  29.   If you have any suggestions for how this document could be improved,
  30.   please let me know (dhinds@hyper.stanford.edu).
  31.  
  32.   1.2.  Copyright notice and disclaimer
  33.  
  34.   Copyright (c) 1998 David A. Hinds
  35.  
  36.   This document may be reproduced or distributed in any form without my
  37.   prior permission.  Modified versions of this document, including
  38.   translations into other languages, may be freely distributed, provided
  39.   that they are clearly identified as such, and this copyright is
  40.   included intact.
  41.  
  42.   This document may be included in commercial distributions without my
  43.   prior consent.  While it is not required, I would like to be informed
  44.   of such usage.  If you intend to incorporate this document in a
  45.   published work, please contact me to make sure you have the latest
  46.   available version.
  47.  
  48.   This document is provided ``as is'', with no explicit or implied
  49.   warranties.  Use the information in this document at your own risk.
  50.  
  51.   1.3.  What is the latest version, and where can I get it?
  52.  
  53.   The current major release of Card Services is version 3.0, and minor
  54.   updates or bug fixes are numbered 3.0.1, 3.0.2, and so on.
  55.  
  56.   Source code for the latest version is available from
  57.   hyper.stanford.edu in the /pub/pcmcia directory, as pcmcia-
  58.   cs-3.0.?.tar.gz.  There will usually be several versions here.  I
  59.   generally only keep the latest minor release for a given major
  60.   release.  New major releases may contain relatively untested code, so
  61.   I also keep the latest version of the previous major release as a
  62.   relatively stable fallback; the current fallback is 2.9.12.  It is up
  63.   to you to decide which version is more appropriate, but the CHANGES
  64.   file will summarize the most important differences.
  65.   hyper.stanford.edu is mirrored at sunsite.unc.edu (and all sunsite
  66.   mirror sites) in /pub/Linux/kernel/pcmcia.
  67.  
  68.   If you do not feel up to compiling the PCMCIA drivers from scratch,
  69.   pre-compiled drivers are included with current releases of most of the
  70.   major Linux distributions, including Slackware, Red Hat, Caldera, and
  71.   Yggdrasil, among others.
  72.  
  73.   1.4.  What systems are supported?
  74.  
  75.   This code should run on almost any Linux-capable laptop.  Most common
  76.   PCMCIA controllers are supported, including Intel, Cirrus, Vadem,
  77.   VLSI, Ricoh, and Databook chips.  Custom controllers used in IBM and
  78.   Toshiba laptops are also supported.  PCMCIA card docks for desktop
  79.   systems should work as long as they are the type that plugs directly
  80.   into the ISA bus, rather than SCSI-to-PCMCIA or IDE-to-PCMCIA
  81.   adapters.
  82.  
  83.   CardBus bridge controllers that conform to the ``Yenta'' register
  84.   specification (including TI, Cirrus, SMC, O2Micro, Omega Micro, and
  85.   Ricoh chips) are supported, though support for 32-bit CardBus cards is
  86.   still somewhat experimental.  Drivers prior to version 3.0 only
  87.   support 16-bit cards in CardBus sockets.  Due to the rapid pace of
  88.   technological change for laptop hardware, new controllers appear
  89.   frequently, and there may be delays between when a new model appears
  90.   on the market, and when driver support becomes available.
  91.  
  92.   The Motorola 6AHC05GA controller used in some Hyundai laptops is not
  93.   supported.  The custom PCMCIA controller in the HP Omnibook 600 is
  94.   unsupported.
  95.  
  96.   1.5.  What PCMCIA cards are supported?
  97.  
  98.   The current release includes drivers for a variety of ethernet cards,
  99.   a driver for modem and serial port cards, several SCSI adapter
  100.   drivers, a driver for ATA/IDE drive cards, and memory card drivers
  101.   that should support most SRAM cards and some flash cards.  The
  102.   SUPPORTED.CARDS file included with each release of Card Services lists
  103.   all cards that are known to work in at least one actual system.
  104.  
  105.   The likelihood that a card not on the supported list will work depends
  106.   on the type of card.  Essentially all modems should work with the
  107.   supplied driver.  Some network cards may work if they are OEM versions
  108.   of supported cards.  Other types of IO cards (frame buffers, sound
  109.   cards, etc) will not work until someone writes the appropriate
  110.   drivers.
  111.  
  112.   1.6.  When will my new card be supported?
  113.  
  114.   Unfortunately, they usually don't pay me to write device drivers, so
  115.   if you would like to have a driver for your favorite card, you are
  116.   probably going to have to do at least some of the work.  Ideally, I'd
  117.   like to work towards a model like the Linux kernel, where I would be
  118.   responsible mainly for the ``core'' PCMCIA code and other authors
  119.   would contribute and maintain drivers for specific cards.  The
  120.   SUPPORTED.CARDS file mentions some cards for which driver work is
  121.   currently in progress.  I will try to help where I can, but be warned
  122.   that debugging kernel device drivers by email is not particularly
  123.   effective.
  124.  
  125.   Manufacturers interested in helping provide Linux support for their
  126.   products can contact me about consulting arrangements.
  127.  
  128.   1.7.  Mailing lists and other information sources
  129.  
  130.   I used to maintain a database and mailing list of Linux PCMCIA users.
  131.   More recently, I've turned my web page for Linux PCMCIA information
  132.   into a ``HyperNews'' site, with a set of message lists for Linux
  133.   PCMCIA issues.  There are lists for installation and configuration
  134.   issues, for different types of cards, and for PCMCIA programming and
  135.   debugging.  The Linux PCMCIA information page is at
  136.   <http://hyper.stanford.edu/HyperNews/get/pcmcia/home.html>.  Users can
  137.   request email notification of new responses to particular questions,
  138.   or notification for all new messages in a given category.  I hope that
  139.   this will become a useful repository of information, for questions
  140.   that go beyond the scope of the HOWTO.
  141.  
  142.   There is a Linux mailing list devoted to laptop issues, the ``linux-
  143.   laptop'' list.  For more information, send a message containing the
  144.   word ``help'' to majordomo@vger.rutgers.edu.  To subscribe, send a
  145.   message containing ``subscribe linux-laptop'' to the same address.
  146.   This mailing list might be a good forum for discussion of Linux PCMCIA
  147.   issues.
  148.  
  149.   The Linux Laptop Home Page at
  150.   <http://www.cs.utexas.edu/users/kharker/linux-laptop> has links to
  151.   many sites that have information about configuring specific types of
  152.   laptops for Linux (and PCMCIA).  There is also a searchable database
  153.   of system configuration information.
  154.  
  155.   1.8.  Why don't you distribute PCMCIA binaries?
  156.  
  157.   For me, distributing binaries would be a significant hassle.  It is
  158.   complicated because some features can only be selected at compile
  159.   time, and because the PCMCIA modules are somewhat dependent on having
  160.   the ``right'' kernel configuration.  So, I would probably need to
  161.   distribute precompiled modules along with matching kernels.  Beyond
  162.   this, the greatest need for precompiled modules is when installing
  163.   Linux on a clean system.  This typically requires setting up PCMCIA so
  164.   that it can be used in the installation process for a particular Linux
  165.   distribution.  Each Linux distribution has its own procedures, and it
  166.   is not feasible for me to provide boot and root disks for even just
  167.   the common combinations of drivers and distributions.
  168.  
  169.   PCMCIA is now a part of many of the major Linux distributions,
  170.   including Red Hat, Caldera, Slackware, Yggdrasil, Craftworks, and
  171.   Nascent Technology.
  172.  
  173.   1.9.  Why is the PCMCIA package so darned big?
  174.  
  175.   Well, first of all, it isn't actually that large.  All the driver
  176.   modules together take up about 200K of disk space.  The utility
  177.   programs add up to about 70K, and the stuff in /etc/pcmcia is about
  178.   30K.  When running, the core PCMCIA modules take up 48K of system
  179.   memory.  The cardmgr daemon will generally be swapped out except when
  180.   cards are inserted or removed.  The total package size is not much
  181.   different from DOS Card Services implementations.
  182.  
  183.   Compared to DOS ``point enablers'', this may still seem like a lot of
  184.   overhead, especially for people that don't plan on using many of the
  185.   features of PCMCIA, such as power management or hot swapping.  Point
  186.   enablers can be tiny because they generally support only one or a
  187.   small set of cards, and also generally support a restricted set of
  188.   PCMCIA controllers.  If someone were to write a genuinely ``generic''
  189.   modem enabler, it would end up incorporating much of the functionality
  190.   of Card Services, to handle cards from different vendors and the full
  191.   range of PCMCIA controller variants.
  192.   2.  Compilation and installation
  193.  
  194.   2.1.  Prerequisites and kernel setup
  195.  
  196.   Before starting, you should think about whether you really need to
  197.   compile the PCMCIA package yourself.  All common Linux distributions
  198.   come with pre-compiled PCMCIA driver packages.  Generally, you only
  199.   need to install the drivers from scratch if you need a new feature of
  200.   the current drivers, or if you've updated and/or reconfigured your
  201.   kernel in a way that is incompatible with the drivers included with
  202.   your Linux distribution.  While compiling the PCMCIA package is not
  203.   technically difficult, it does require some general Linux familiarity.
  204.  
  205.   The following things should be installed on your system before you
  206.   start installing PCMCIA:
  207.  
  208.   ╖  A 2.0.* or 2.1.* series kernel source tree.
  209.  
  210.   ╖  An appropriate set of module utilities.
  211.  
  212.   ╖  (Optional) the ``XForms'' X11 user interface toolkit.
  213.  
  214.   The current driver package actually works with most kernel versions
  215.   back to 1.2.8.  However, use with older kernels is deprecated, and
  216.   backwards compatibility with very old kernels may go away at any time.
  217.  
  218.   You need to have a complete linux source tree for your kernel, not
  219.   just an up-to-date kernel image, to compile the PCMCIA package.  The
  220.   PCMCIA modules contain some references to kernel source files.  While
  221.   you may want to build a new kernel to remove unnecessary drivers,
  222.   installing PCMCIA does not require you to do so.
  223.  
  224.   Current ``stable'' kernel sources and patches are available from
  225.   <ftp://sunsite.unc.edu/pub/Linux/kernel/v2.0>, or from
  226.   <ftp://tsx-11.mit.edu/pub/linux/sources/system/v2.0>.  Development
  227.   kernels can be found in the corresponding v2.1 subdirectories.
  228.   Current module utilities can be found in the same locations.
  229.  
  230.   In the Linux source tree for 2.0 and 2.1 kernels, the
  231.   Documentation/Changes file describes the versions of all sorts of
  232.   other system components that are required for that kernel release.
  233.   You may want to check through this and verify that your system is up
  234.   to date, especially if you have updated your kernel.  If you are using
  235.   a 2.1 kernel, be sure that you are using the right combination of
  236.   shared libraries and module tools.
  237.  
  238.   When configuring your kernel, if you plan on using a PCMCIA ethernet
  239.   card, you should turn on networking support but turn off the normal
  240.   Linux network card drivers, including the ``pocket and portable
  241.   adapters''.  The PCMCIA network card drivers are all implemented as
  242.   loadable modules.  Any drivers compiled into your kernel will only
  243.   waste space.
  244.  
  245.   If you want to use SLIP, PPP, or PLIP, you do need to either configure
  246.   your kernel with these enabled, or use the loadable module versions of
  247.   these drivers.  There is an unfortunate deficiency in the kernel
  248.   config process in 1.2.X kernels, in that it is not possible to set
  249.   configuration options (like SLIP compression) for a loadable module,
  250.   so it is probably better to just link SLIP into the kernel if you need
  251.   it.
  252.  
  253.   In order to use a PCMCIA token ring adapter, your kernel should be
  254.   configured with ``Token Ring driver support'' (CONFIG_TR) enabled,
  255.   though you should leave CONFIG_IBMTR off.
  256.  
  257.   If you want to use a PCMCIA IDE adapter, your kernel should be
  258.   configured with CONFIG_BLK_DEV_IDE_PCMCIA enabled, for 1.3.72 through
  259.   2.1.7 kernels.  Older kernels do not support removeable IDE devices;
  260.   newer kernels do not require a special configuration setting.
  261.  
  262.   If you will be using a PCMCIA SCSI adapter, you should enable
  263.   CONFIG_SCSI when configuring your kernel.  Also, enable any top level
  264.   drivers (SCSI disk, tape, cdrom, generic) that you expect to use.  All
  265.   low-level drivers for particular host adapters should be disabled, as
  266.   they will just take up space.
  267.  
  268.   If you want to modularize a driver that is needed for a PCMCIA device,
  269.   you must modify /etc/pcmcia/config to specify what modules need to be
  270.   loaded for what card types.  For example, if the serial driver is
  271.   modularized, then the serial device definition should be:
  272.  
  273.        device "serial_cs"
  274.          class "serial" module "misc/serial", "serial_cs"
  275.  
  276.   This package includes an X-based card status utility called cardinfo.
  277.   This utility is based on a freely distributed user interface toolkit
  278.   called the XForms Library.  This library is available as a separate
  279.   package with most Linux distributions.  If you would like to build
  280.   cardinfo, you should install XForms and all the normal X header files
  281.   and libraries before configuring the PCMCIA package.
  282.  
  283.   2.2.  Installation
  284.  
  285.   Here is a synopsis of the installation process:
  286.  
  287.   ╖  Unpack pcmcia-cs-3.0.?.tar.gz in /usr/src.
  288.  
  289.   ╖  Run ``make config'' in the new pcmcia-cs-3.0.? directory.
  290.  
  291.   ╖  Run ``make all'', then ``make install''.
  292.  
  293.   ╖  Customize the PCMCIA startup script and the option files in
  294.      /etc/pcmcia for your site.
  295.  
  296.   If you plan to install any contributed client drivers not included in
  297.   the core PCMCIA distribution, unpack each of them in the top-level
  298.   directory of the PCMCIA source tree.  Then follow the normal build
  299.   instructions.  The extra drivers will be compiled and installed
  300.   automatically.
  301.  
  302.   Running ``make config'' prompts for a few configuration options, and
  303.   checks out your system to verify that it satisfies all prerequisites
  304.   for installing PCMCIA support.  In most cases, you'll be able to just
  305.   accept all the default configuration options.  Be sure to carefully
  306.   check the output of this command in case there are problems.
  307.  
  308.   If you are compiling the PCMCIA package for installation on another
  309.   machine, specify an alternate target directory when prompted by the
  310.   configure script.  This should be an absolute path.  All the PCMCIA
  311.   tools will be installed relative to this directory.  You will then be
  312.   able to tar this directory tree and copy to your target machine, and
  313.   unpack relative to its root directory to install everything in the
  314.   proper places.
  315.  
  316.   If you are cross compiling on another machine, you may want to specify
  317.   alternate names for the compiler and linker.  This may also be helpful
  318.   on mixed a.out and ELF systems.  The script will also prompt for
  319.   additional compiler flags for debugging.
  320.  
  321.   Some of the support utilities (cardctl and cardinfo) can be compiled
  322.   either in ``safe'' or ``trusting'' forms.  The ``safe'' forms prevent
  323.   non-root users from modifying card configurations.  The ``trusting''
  324.   forms permit ordinary users to issue commands to suspend and resume
  325.   cards, reset cards, and change the current configuration scheme.  The
  326.   configuration script will ask if you want the utilities compiled as
  327.   safe or trusting: the default is to be safe.
  328.  
  329.   There are a few kernel configuration options that affect the PCMCIA
  330.   tools.  The configuration script can deduce these from the running
  331.   kernel (the most common case).  Alternatively, if you are compiling
  332.   for installation on another machine, it can read the configuration
  333.   from a kernel source tree, or each option can be set interactively.
  334.  
  335.   Running ``make all'' followed by ``make install'' will build and then
  336.   install the kernel modules and utility programs.  Kernel modules are
  337.   installed under /lib/modules/<version>/pcmcia.  The cardmgr and
  338.   cardctl programs are installed in /sbin.  If cardinfo is built, it is
  339.   installed in /usr/bin/X11.
  340.  
  341.   Configuration files will be installed in the /etc/pcmcia directory.
  342.   If you are installing over an older version, your old config scripts
  343.   will be backed up before being replaced.  The saved scripts will be
  344.   given extensions like *.~1~, *.~2~, and so on.
  345.  
  346.   If you don't know what kind of PCMCIA controller chip you have, you
  347.   can use the probe utility in the cardmgr/ subdirectory to determine
  348.   this.  There are two major types: the Databook TCIC-2 type and the
  349.   Intel i82365SL-compatible type.
  350.  
  351.   In a few cases, the probe command will be unable to determine your
  352.   controller type automatically.  If you have a Halikan NBD 486 system,
  353.   it has a TCIC-2 controller at an unusual location: you'll need to edit
  354.   rc.pcmcia to load the tcic module, and also set the PCIC_OPTS
  355.   parameter to ``tcic_base=0x02c0''.
  356.  
  357.   On some systems using Cirrus controllers, including the NEC Versa M,
  358.   the BIOS puts the controller in a special suspended state at system
  359.   startup time.  On these systems, the probe command will fail to find
  360.   any known PCMCIA controller.  If this happens, edit rc.pcmcia and set
  361.   PCIC to i82365, and PCIC_OPTS to ``wakeup=1''.
  362.  
  363.   2.3.  Post-installation for systems using BSD init scripts
  364.  
  365.   Some Linux distributions, including Slackware, use a BSD arrangement
  366.   for system startup scripts.  If /etc/rc.d/rc.M exists, your system is
  367.   in this group.  The script rc.pcmcia, installed in /etc/rc.d, controls
  368.   starting up and shutting down the PCMCIA system.  ``make install''
  369.   will use the probe command to determine your controller type and
  370.   modify rc.pcmcia appropriately.  You should add a line to your system
  371.   startup file /etc/rc.d/rc.M to invoke the PCMCIA startup script, like:
  372.  
  373.        /etc/rc.d/rc.pcmcia start
  374.  
  375.   It does not really matter where you insert this line, as long as the
  376.   PCMCIA drivers are started after syslogd.
  377.  
  378.   2.4.  Post-installation for systems using System V init scripts
  379.  
  380.   Red Hat, Caldera, and Debian Linux have a System V-ish arrangement for
  381.   system startup files.  If you have a directory called /etc/init.d or
  382.   /etc/rc.d/init.d, then your system is in this group.  The rc.pcmcia
  383.   script will be installed as /etc/rc.d/init.d/pcmcia, or
  384.   /etc/init.d/pcmcia, as appropriate.  There is no need to edit any of
  385.   the startup scripts to enable PCMCIA: it will happen automatically.
  386.  
  387.   If the /etc/sysconfig directory exists, then a separate configuration
  388.   file, /etc/sysconfig/pcmcia, will be created for startup options.  If
  389.   you need to change any module options (like the PCIC= or PCIC_OPTS=
  390.   settings), edit this config file rather than the actual PCMCIA startup
  391.   script.  This file will not be overwritten by subsequent installs.
  392.  
  393.   Some previous releases used the /etc/sysconfig/pcmcia-scripts
  394.   directory in place of /etc/pcmcia on these platforms.  The current
  395.   release instead uses /etc/pcmcia for all systems, and will move an
  396.   existing /etc/sysconfig/pcmcia-scripts to /etc/pcmcia.
  397.  
  398.   2.5.  Socket driver options
  399.  
  400.   Some PCMCIA controllers have optional features that may or may not be
  401.   implemented in a particular system.  In some cases, it is impossible
  402.   for the socket driver to detect if these features are implemented.
  403.   Check the man page for your socket driver to see what optional
  404.   features may be present for your controller.
  405.  
  406.   The low level socket drivers, tcic and i82365, have numerous bus
  407.   timing parameters that may need to be adjusted for systems with
  408.   particularly fast processors.  Symptoms of timing problems include
  409.   card recognition problems, lock-ups under heavy loads, high error
  410.   rates, or poor device performance.  Check the corresponding man pages
  411.   for more details, but here is a brief summary:
  412.  
  413.   ╖  Cirrus controllers have numerous configurable timing parameters.
  414.      The most important seems to be the cmd_time flag, which determines
  415.      the length of PCMCIA bus cycles.  Fast 486 systems (i.e., DX4-100)
  416.      seem to often benefit from increasing this from 6 (the default) to
  417.      12 or 16.
  418.  
  419.   ╖  The Cirrus PD6729 PCI controller has the fast_pci flag, which
  420.      should be set if the PCI bus speed is greater than 25 MHz.
  421.  
  422.   ╖  For Vadem VG-468 controllers and Databook TCIC-2 controllers, the
  423.      async_clock flag changes the relative clocking of PCMCIA bus and
  424.      host bus cycles.  Setting this flag adds extra wait states to some
  425.      operations.  However, I have yet to hear of a laptop that needs
  426.      this.
  427.  
  428.   ╖  The pcmcia_core module has the cis_speed parameter for changing the
  429.      memory speed used for accessing a card's Card Information Structure
  430.      (CIS).  On some systems with fast bus clocks, increasing this
  431.      parameter (i.e., slowing down card accesses) may be beneficial for
  432.      card recognition problems.
  433.  
  434.   ╖  This isn't a timing issue, but if you have more than one ISA-to-
  435.      PCMCIA controller in your system or extra sockets in a docking
  436.      station, the i82365 module should be loaded with the extra_sockets
  437.      parameter set to 1.  This should not be necessary for PCI-to-PCMCIA
  438.      or PCI-to-CardBus bridges
  439.  
  440.   All these options should be configured by modifying the top of
  441.   /etc/rc.d/rc.pcmcia.  For example:
  442.  
  443.        # Should be either i82365 or tcic
  444.        PCIC=i82365
  445.        # Put socket driver timing parameters here
  446.        PCIC_OPTS="cmd_time=12"
  447.        # Put pcmcia_core options here
  448.        CORE_OPTS="cis_speed=500"
  449.  
  450.   Here are some timing settings for specific systems:
  451.  
  452.   ╖  On the ARM Pentium-90 or Midwest Micro Soundbook Plus, use
  453.      ``freq_bypass=1 cmd_time=8''.
  454.  
  455.   ╖  On a Midwest Micro Soundbook Elite, use ``cmd_time=12''.
  456.  
  457.   ╖  On a Gateway Liberty, try ``cmd_time=16''.
  458.  
  459.   2.6.  System resource settings
  460.  
  461.   Card Services should automatically avoid allocating IO ports and
  462.   interrupts already in use by other standard devices.  It will also
  463.   attempt to detect conflicts with unknown devices, but this is not
  464.   completely reliable.  In some cases, you may need to explicitly
  465.   exclude resources for a device in /etc/pcmcia/config.opts.
  466.  
  467.   Here are some resource settings for specific laptop types.
  468.  
  469.   ╖  On the AMS SoundPro, exclude irq 10.
  470.  
  471.   ╖  On some AMS TravelPro 5300 models, use memory 0xc8000-0xcffff.
  472.  
  473.   ╖  On the BMX 486DX2-66, exclude irq 5, irq 9.
  474.  
  475.   ╖  On the Chicony NB5, use memory 0xda000-0xdffff.
  476.  
  477.   ╖  On the Compaq Presario 1020, exclude port 0x2f8-0x2ff, irq 3, irq
  478.      5.
  479.  
  480.   ╖  On the HP Omnibook 4000C, exclude port 0x300-0x30f.
  481.  
  482.   ╖  On the Micron Millenia Transport, exclude irq 5, irq 9.
  483.  
  484.   ╖  On the NEC Versa M, exclude irq 9, port 0x2e0-2ff.
  485.  
  486.   ╖  On the NEC Versa P/75, exclude irq 5, irq 9.
  487.  
  488.   ╖  On the NEC Versa S, exclude irq 9, irq 12.
  489.  
  490.   ╖  On the NEC Versa 6000 series, exclude port 0x300-0x33f, irq 9, irq
  491.      10.
  492.  
  493.   ╖  On the ProStar 9200, Altima Virage, and Acquiline Hurricane
  494.      DX4-100, exclude irq 5, port 0x330-0x35f.  Maybe use memory
  495.      0xd8000-0xdffff.
  496.   ╖  On the Siemens Nixdorf SIMATIC PG 720C, use memory 0xc0000-0xcffff,
  497.      port 0x300-0x3bf.
  498.  
  499.   ╖  On the TI TravelMate 5000, use memory 0xd4000-0xdffff.
  500.  
  501.   ╖  On the Toshiba T4900 CT, exclude irq 5, port 0x2e0-0x2e8, port
  502.      0x330-0x338.
  503.  
  504.   ╖  On the Twinhead 5100, HP 4000, Sharp PC-8700 and PC-8900, exclude
  505.      irq 9 (sound), irq 12.
  506.  
  507.   ╖  On an MPC 800 Series, exclude irq 5, port 0x300-0x30f for the CD-
  508.      ROM.
  509.  
  510.   3.  Resolving installation and configuration problems
  511.  
  512.   This section describes some of the most common failure modes for the
  513.   PCMCIA subsystem.  Try to match your symptoms against the examples.
  514.   This section only describes ``general failures'' that are not specific
  515.   to a particular card or driver.
  516.  
  517.   It is nearly impossible to debug PCMCIA driver problems encountered
  518.   when attempting to install Linux via a PCMCIA device.  Even if you can
  519.   identify the problem based on its symptoms, installation disks are
  520.   difficult to modify, especially without access to a running Linux
  521.   system.  Customization of installation disks is completely dependent
  522.   on the choice of Linux distribution, and is beyond the scope of this
  523.   document.  In general, the best course of action is to install Linux
  524.   using some other means, obtain the latest PCMCIA drivers, and then
  525.   debug the problem if it persists.
  526.  
  527.   3.1.  Base PCMCIA kernel modules do not load
  528.  
  529.   Symptoms:
  530.  
  531.   ╖  Kernel version mismatch errors are reported when the PCMCIA startup
  532.      script runs.
  533.  
  534.   ╖  After startup, lsmod does not show any PCMCIA modules.
  535.  
  536.   ╖  cardmgr reports ``no pcmcia driver in /proc/devices'' in the system
  537.      log.
  538.  
  539.   Kernel modules contain version information that is checked against the
  540.   current kernel when a module is loaded.  The type of checking depends
  541.   on the setting of the CONFIG_MODVERSIONS kernel option.  If this is
  542.   false, then the kernel version number is compiled into each module,
  543.   and insmod checks this for a match with the running kernel.  If
  544.   CONFIG_MODVERSIONS is true, then each symbol exported by the kernel is
  545.   given a sort of checksum.  These codes are all compared against the
  546.   corresponding codes compiled into a module.  The intent was for this
  547.   to make modules less version-dependent, because the checksums would
  548.   only change if a kernel interface changed, and would generally stay
  549.   the same across minor kernel updates.  In practice, the checksums have
  550.   turned out to be even more restrictive, because many kernel interfaces
  551.   depend on compile-time kernel option settings.  Also, the checksums
  552.   turned out to be an excessively pessimistic judge of compatibility.
  553.  
  554.   Some of the PCMCIA modules require kernel services that may or may not
  555.   be present, depending on kernel configuration.  For instance, the SCSI
  556.   card drivers require that the kernel be configured with SCSI support,
  557.   and the network drivers require a networking kernel.  If a kernel
  558.   lacks a necessary feature, insmod may report undefined symbols and
  559.   refuse to load a module.
  560.   The practical upshot of this is that kernel modules are closely tied
  561.   to both the kernel version, and the setting of many kernel
  562.   configuration options.  Generally, a set of modules compiled for one
  563.   2.0.31 kernel will not load against some other 2.0.31 kernel unless
  564.   special care is taken to ensure that the two were built with similar
  565.   configurations.  This makes distribution of precompiled kernel modules
  566.   a tricky business.
  567.  
  568.   You have several options:
  569.  
  570.   ╖  If you obtained precompiled drivers as part of a Linux
  571.      distribution, verify that you are using an unmodified kernel as
  572.      supplied with that distribution.  If you intend to use precompiled
  573.      modules, you generally must stick with the corresponding kernel.
  574.  
  575.   ╖  If you have reconfigured or upgraded your kernel, you will probably
  576.      need to compile and install the PCMCIA package from scratch.  This
  577.      is easily done if you already have the kernel source tree
  578.      installed.  See the PCMCIA-HOWTO for detailed instructions.
  579.  
  580.   ╖  In some cases, incompatibilities in other system components can
  581.      prevent correct loading of kernel modules.  If you have upgraded
  582.      your own kernel, pay attention to the ``minimal requirements'' for
  583.      module utilities and binutils listed in the Documentation/Changes
  584.      file in the kernel source code tree.
  585.  
  586.   3.2.  Interrupt scan failures
  587.  
  588.   Symptoms:
  589.  
  590.   ╖  The system locks up when the PCMCIA drivers are loaded, even with
  591.      no cards present.
  592.  
  593.   ╖  The system log shows a successful PCMCIA controller probe just
  594.      before the lock-up, but does not show interrupt probe results.
  595.  
  596.   After identifying the PCMCIA controller, the socket driver probes for
  597.   free interrupts.  The probe involves programming the controller for
  598.   each apparently free interrupt, then generating a ``soft'' interrupt,
  599.   to see if the interrupt can be detected correctly.  In some cases,
  600.   probing a particular interrupt can interfere with another system
  601.   device.
  602.  
  603.   The reason for the probe is to identify interrupts which appear to be
  604.   free (i.e., are not reserved by any other Linux device driver), yet
  605.   are either not physically wired to the PCMCIA controller, or are
  606.   connected to another device that does not have a driver.
  607.  
  608.   There are two ways to proceed:
  609.  
  610.   ╖  The interrupt probe can be restricted to a list of interrupts using
  611.      the irq_list parameter for the socket drivers.  For example,
  612.      ``irq_list=5,9,10'' would limit the scan to three interrupts.  All
  613.      PCMCIA devices will be restricted to using these interrupts
  614.      (assuming they pass the probe).  You may need to use trial and
  615.      error to find out which interrupts can be safely probed.
  616.  
  617.   ╖  The interrupt probe can be disabled entirely by loading the socket
  618.      driver with the ``do_scan=0'' option.  In this case, a default
  619.      interrupt list will be used, which avoids interrupts already
  620.      allocated for other devices.
  621.  
  622.   In either case, the probe options can be specified using the PCIC_OPTS
  623.   definition in the PCMCIA startup script, for example:
  624.  
  625.        PCIC_OPTS="irq_list=5,9,10"
  626.  
  627.   3.3.  Memory probe failures
  628.  
  629.   Symptoms:
  630.  
  631.   ╖  The core drivers load correctly when no cards are present, with no
  632.      errors in the system log.
  633.  
  634.   ╖  The system freezes and/or reboots as soon as any card is inserted,
  635.      before any beeps are heard.
  636.  
  637.   Or alternately:
  638.  
  639.   ╖  All card insertions generate a high beep followed by a low beep.
  640.  
  641.   ╖  All cards are identified as ``anonymous memory cards''.
  642.  
  643.   ╖  The system log reports that various memory ranges have been
  644.      excluded.
  645.  
  646.   The core modules perform a memory scan at the time of first card
  647.   insertion.  This scan can potentially interfere with other memory
  648.   mapped devices.  Also, pre-3.0.0 driver packages perform a more
  649.   aggressive scan than more recent drivers.  The memory window is
  650.   defined in /etc/pcmcia/config.opts.  The default window is large, so
  651.   it may help to restrict the scan to a narrower range.  Reasonable
  652.   ranges to try include 0xd0000-0xdffff, 0xc0000-0xcffff,
  653.   0xc8000-0xcffff, or 0xd8000-0xdffff.
  654.  
  655.   If you have DOS or Windows PCMCIA drivers, you may be able to deduce
  656.   what memory region those drivers use.  Note that DOS memory addresses
  657.   are often specified in ``segment'' form, which leaves off the final
  658.   hex digit (so an absolute address of 0xd0000 might be given as
  659.   0xd000).  Be sure to add the extra digit back when making changes to
  660.   /etc/pcmcia/config.opts.
  661.  
  662.   3.4.  Failure to detect card insertions and removals
  663.  
  664.   Symptoms:
  665.  
  666.   ╖  Cards are detected and configured properly if present at boot time.
  667.  
  668.   ╖  The drivers do not respond to insertion and removal events, either
  669.      by recording events in the system log, or by beeping.
  670.  
  671.   In most cases, the socket driver (i82365 or tcic) will automatically
  672.   probe and select an appropriate interrupt to signal card status
  673.   changes.  The automatic interrupt probe doesn't work on some Intel-
  674.   compatible controllers, including Cirrus chips and the chips used in
  675.   some IBM ThinkPads.  If a device is inactive at probe time, its
  676.   interrupt may also appear to be available.  In these cases, the socket
  677.   driver may pick an interrupt that is used by another device.
  678.  
  679.   With the i82365 and tcic drivers, the irq_list option can be used to
  680.   limit the interrupts that will be tested.  This list limits the set of
  681.   interrupts that can be used by PCMCIA cards as well as for monitoring
  682.   card status changes.  The cs_irq option can also be used to explicitly
  683.   set the interrupt to be used for monitoring card status changes.
  684.  
  685.   If you can't find an interrupt number that works, there is also a
  686.   polled status mode: both i82365 and tcic will accept a
  687.   poll_interval=100 option, to poll for card status changes once per
  688.   second.  This option should also be used if your system has a shortage
  689.   of interrupts available for use by PCMCIA cards.  Especially for
  690.   systems with more than one PCMCIA controller, there is little point in
  691.   dedicating interrupts for monitoring card status changes.
  692.  
  693.   All these options should be set in the PCIC_OPTS= line in either
  694.   /etc/rc.d/rc.pcmcia or /etc/sysconfig/pcmcia, depending on your site
  695.   setup.
  696.  
  697.   3.5.  Resource conflict between two cards
  698.  
  699.   Symptoms:
  700.  
  701.   ╖  Two cards each work fine when used separately.
  702.  
  703.   ╖  When both cards are inserted, only one works.
  704.  
  705.   This usually indicates a resource conflict with a system device that
  706.   Linux does not know about.  PCMCIA devices are dynamically configured,
  707.   so, for example, interrupts are allocated as needed, rather than
  708.   specifically assigned to particular cards or sockets.  Given a list of
  709.   resources that appear to be available, cards are assigned resources in
  710.   the order they are configured.  In this case, the card configured last
  711.   is being assigned a resource that in fact is not free.
  712.  
  713.   Check the system log to see what resources are used by the non-working
  714.   card.  Exclude these in /etc/pcmcia/config.opts, and restart the
  715.   cardmgr daemon to reload the resource database.
  716.  
  717.   3.6.  Device configuration does not complete
  718.  
  719.   Symptoms:
  720.  
  721.   ╖  When a card is inserted, exactly one high beep is heard.
  722.  
  723.   ╖  Subsequent card insertions and removals may be ignored.
  724.  
  725.   This indicates that the card was identified successfully, however,
  726.   cardmgr has been unable to complete the configuration process for some
  727.   reason.  The most likely reason is that a step in the card setup
  728.   script has blocked.  A good example would be the network script
  729.   blocking if a network card is inserted with no actual network hookup
  730.   present.
  731.  
  732.   To pinpoint the problem, you can manually run a setup script to see
  733.   where it is blocking.  The scripts are in the /etc/pcmcia directory.
  734.   They take two parameters: a device name, and an action.  The cardmgr
  735.   daemon records the configuration commands in the system log.  For
  736.   example, if the system log shows that the command ``./network start
  737.   eth0'' was the last command executed by cardmgr, the following
  738.   commands would trace the script:
  739.  
  740.        cd /etc/pcmcia
  741.        sh -x ./network start eth0
  742.  
  743.   4.  Usage and features
  744.  
  745.   4.1.  Tools for configuring and monitoring PCMCIA devices
  746.  
  747.   If the modules are all loaded correctly, the output of the lsmod
  748.   command should look like the following, when no cards are inserted:
  749.  
  750.        Module                  Size  Used by
  751.        ds                      5640   2
  752.        i82365                 15452   2
  753.        pcmcia_core            30012   3  [ds i82365]
  754.  
  755.   The system log should also include output from the socket driver
  756.   describing the host controller(s) found and the number of sockets
  757.   detected.
  758.  
  759.   4.1.1.  The cardmgr configuration daemon
  760.  
  761.   The cardmgr daemon is responsible for monitoring PCMCIA sockets,
  762.   loading client drivers when needed, and running user-level scripts in
  763.   response to card insertions and removals.  It records its actions in
  764.   the system log, but also uses beeps to signal card status changes.
  765.   The tones of the beeps indicate success or failure of particular
  766.   configuration steps.  Two high beeps indicate that a card was
  767.   identified and configured successfully.  A high beep followed by a low
  768.   beep indicates that a card was identified, but could not be configured
  769.   for some reason.  One low beep indicates that a card could not be
  770.   identified.
  771.  
  772.   Cardmgr records device information for each socket in /var/run/stab.
  773.   Here is a sample /var/run/stab listing:
  774.  
  775.        Socket 0: Adaptec APA-1460 SlimSCSI
  776.        0       scsi    aha152x_cs      0       sda     8       0
  777.        0       scsi    aha152x_cs      1       scd0    11      0
  778.        Socket 1: Serial or Modem Card
  779.        1       serial  serial_cs       0       ttyS1   5       65
  780.  
  781.   For the lines describing devices, the first field is the socket, the
  782.   second is the device class, the third is the driver name, the fourth
  783.   is used to number multiple devices associated with the same driver,
  784.   the fifth is the device name, and the final two fields are the major
  785.   and minor device numbers for this device (if applicable).
  786.  
  787.   The cardmgr daemon configures cards based on a database of known card
  788.   types kept in /etc/pcmcia/config.  This file describes the various
  789.   client drivers, then describes how to identify various cards, and
  790.   which driver(s) belong with which cards.  The format of this file is
  791.   described in the pcmcia(5) man page.
  792.  
  793.   4.1.2.  The cardctl and cardinfo utilities
  794.  
  795.   The cardctl command can be used to check the status of a socket, or to
  796.   see how it is configured.  It can also be used to alter the
  797.   configuration status of a card.  Here is an example of the output of
  798.   the ``cardctl config'' command:
  799.  
  800.        Socket 0:
  801.        Socket 1:
  802.          Vcc = 5.0, Vpp1 = 0.0, Vpp2 = 0.0
  803.          Card type is memory and I/O
  804.          IRQ 3 is dynamic shared, level mode, enabled
  805.          Speaker output is enabled
  806.          Function 0:
  807.            Config register base = 0x0800
  808.              Option = 0x63, status = 0x08
  809.            I/O window 1: 0x0280 to 0x02bf, auto sized
  810.            I/O window 2: 0x02f8 to 0x02ff, 8 bit
  811.  
  812.   The ``cardctl suspend'' and ``cardctl resume'' commands can be used to
  813.   shut down a card without unloading its associated drivers.  The
  814.   ``cardctl reset'' command attempts to reset and reconfigure a card.
  815.   ``cardctl insert'' and ``cardctl eject'' mimic the actions performed
  816.   when a card is physically inserted or ejected, including loading or
  817.   unloading drivers, and configuring or shutting down devices.
  818.  
  819.   If you are running X, the cardinfo utility produces a graphical
  820.   display showing the current status of all PCMCIA sockets, similar in
  821.   content to ``cardctl config''.  It also provides a graphical interface
  822.   to most other cardctl functions.
  823.  
  824.   4.1.3.  Inserting and ejecting cards
  825.  
  826.   In theory, you can insert and remove PCMCIA cards at any time.
  827.   However, it is a good idea not to eject a card that is currently being
  828.   used by an application program.  Kernels older than 1.1.77 would often
  829.   lock up when serial/modem cards were ejected, but this should be fixed
  830.   now.
  831.  
  832.   4.1.4.  Card Services and Advanced Power Management
  833.  
  834.   Card Services can be compiled with support for APM (Advanced Power
  835.   Management) if you've installed this package on your system.  APM is
  836.   incorporated into 1.3.46 and later kernels.  It is currently being
  837.   maintained by Rick Faith (faith@cs.unc.edu), and APM tools can be
  838.   obtained from <ftp://ftp.cs.unc.edu/pub/users/faith/linux>.  The
  839.   PCMCIA modules will automatically be configured for APM if a
  840.   compatible version is detected on your system.
  841.  
  842.   Without resorting to APM, you can do ``cardctl suspend'' before
  843.   suspending your laptop, and ``cardctl resume'' after resuming, to
  844.   properly shut down and restart your PCMCIA cards.  This will not work
  845.   with a PCMCIA modem that is in use, because the serial driver isn't
  846.   able to save and restore the modem operating parameters.
  847.  
  848.   APM seems to be unstable on some systems.  If you experience trouble
  849.   with APM and PCMCIA on your system, try to narrow down the problem to
  850.   one package or the other before reporting a bug.
  851.  
  852.   Some drivers, notably the PCMCIA SCSI drivers, cannot recover from a
  853.   suspend/resume cycle.  When using a PCMCIA SCSI card, use ``cardctl
  854.   eject'' prior to suspending the system.
  855.  
  856.   4.1.5.  Shutting down the PCMCIA system
  857.  
  858.   To unload the entire PCMCIA package, invoke rc.pcmcia with:
  859.  
  860.        /etc/rc.d/rc.pcmcia stop
  861.  
  862.   This script will take several seconds to run, to give all client
  863.   drivers time to shut down gracefully.  If a PCMCIA device is currently
  864.   in use, the shutdown will be incomplete, and some kernel modules may
  865.   not be unloaded.  To avoid this, use ``cardctl eject'' to shut down
  866.   all sockets before invoking rc.pcmcia.  The exit status of the cardctl
  867.   command will indicate if any sockets could not be shut down.
  868.  
  869.   4.2.  Overview of the PCMCIA configuration scripts
  870.  
  871.   Each PCMCIA device has an associated ``class'' that describes how it
  872.   should be configured and managed.  Classes are associated with device
  873.   drivers in /etc/pcmcia/config.  There are currently five IO device
  874.   classes (network, SCSI, cdrom, fixed disk, and serial) and two memory
  875.   device classes (memory and FTL).  For each class, there are two
  876.   scripts in /etc/pcmcia/config: a main configuration script (i.e.,
  877.   /etc/pcmcia/scsi for SCSI devices), and an options script (i.e.,
  878.   /etc/pcmcia/scsi.opts).  The main script for a device will be invoked
  879.   to configure that device when a card is inserted, and to shut down the
  880.   device when the card is removed.  For cards with several associated
  881.   devices, the script will be invoked for each device.
  882.  
  883.   The config scripts start by extracting some information about a device
  884.   from /var/run/stab.  Each script constructs a ``device address'', that
  885.   uniquely describes the device it has been asked to configure, in the
  886.   ADDRESS shell variable.  This is passed to the *.opts script, which
  887.   should return information about how a device at this address should be
  888.   configured.  For some devices, the device address is just the socket
  889.   number.  For others, it includes extra information that may be useful
  890.   in deciding how to configure the device.  For example, network devices
  891.   pass their hardware ethernet address as part of the device address, so
  892.   the network.opts script could use this to select from several
  893.   different configurations.
  894.  
  895.   The first part of all device addresses is the current PCMCIA
  896.   ``scheme''.  This parameter is used to support multiple sets of device
  897.   configurations based on a single external user-specified variable.
  898.   One use of schemes would be to have a ``home'' scheme, and a ``work''
  899.   scheme, which would include different sets of network configuration
  900.   parameters.  The current scheme is selected using the ``cardctl
  901.   scheme'' command.  The default if no scheme is set is ``default''.
  902.  
  903.   As a general rule, when configuring Linux for a laptop, PCMCIA devices
  904.   should only be configured from the PCMCIA device scripts.  Do not try
  905.   to configure a PCMCIA device the same way you would configure a
  906.   permanently attached device.  However, some Linux distributions
  907.   provide PCMCIA packages that are hooked into those distributions' own
  908.   device configuration tools.  In that case, some of the following
  909.   sections may not apply; ideally, this will be documented in the
  910.   distribution.
  911.  
  912.   4.3.  PCMCIA network adapters
  913.  
  914.   Linux ethernet-type network interfaces normally have names like eth0,
  915.   eth1, and so on.  Token-ring adapters are handled similarly, however
  916.   they are named tr0, tr1, and so on.  The ifconfig command is used to
  917.   view or modify the state of a network interface.  A peculiarity of
  918.   Linux is that network interfaces do not have corresponding device
  919.   files under /dev, so do not be surprised when you do not find them.
  920.  
  921.   When a PCMCIA ethernet card is detected, it will be assigned the first
  922.   free interface name, which will probably be eth0.  Cardmgr will run
  923.   the /etc/pcmcia/network script to configure the interface.
  924.  
  925.   Do not configure your PCMCIA ethernet card in /etc/rc.d/rc.inet1,
  926.   since the card may not be present when this script is executed.
  927.   Comment out everything except the loopback stuff in rc.inet1.
  928.   Instead, edit the /etc/pcmcia/network.opts file to match your local
  929.   network setup.  The network and network.opts scripts will be executed
  930.   only when your ethernet card is actually present.  If your system has
  931.   an automatic network configuration procedure, it may or may not be
  932.   PCMCIA-aware.  Consult the documentation of your Linux distribution to
  933.   determine if PCMCIA network devices should be configured with the
  934.   automatic tools, or by editing network.opts.
  935.  
  936.   The device address passed to network.opts consists of four comma-
  937.   separated fields: the scheme, the socket number, the device instance,
  938.   and the card's hardware ethernet address.  The device instance is used
  939.   to number devices for cards that have several network interfaces, so
  940.   it will usually be 0.  If you have several network cards used for
  941.   different purposes, one option would be to configure the cards based
  942.   on socket position, as in:
  943.  
  944.        case "$ADDRESS" in
  945.        *,0,*,*)
  946.            # definitions for network card in socket 0
  947.            ;;
  948.        *,1,*,*)
  949.            # definitions for network card in socket 1
  950.            ;;
  951.        esac
  952.  
  953.   Alternatively, they could be configured using their hardware
  954.   addresses, as in:
  955.  
  956.        case "$ADDRESS" in
  957.        *,*,*,00:80:C8:76:00:B1)
  958.            # definitions for a D-Link card
  959.            ;;
  960.        *,*,*,08:00:5A:44:80:01)
  961.            # definitions for an IBM card
  962.        esac
  963.  
  964.   4.3.1.  Network device parameters
  965.  
  966.   The following parameters can be defined in network.opts:
  967.  
  968.      IF_PORT
  969.         Specifies the ethernet transceiver type, for cards that do not
  970.         autodetect.  See ``man ifport'' for transceiver names.
  971.  
  972.      BOOTP
  973.         A boolean (y/n) value: indicates if the host's IP address and
  974.         routing information should be obtained using the BOOTP protocol.
  975.  
  976.      IPADDR
  977.         The IP address for this interface.
  978.  
  979.      NETMASK, BROADCAST, NETWORK
  980.         Basic network parameters: see the networking HOWTO for more
  981.         information.
  982.  
  983.      GATEWAY
  984.         The IP address of a gateway for this host's subnet.  Packets
  985.         with destinations outside this subnet will be routed to this
  986.         gateway.
  987.  
  988.      DOMAIN
  989.         The network domain name for this host, to be used in creating
  990.         /etc/resolv.conf.
  991.  
  992.      DNS_1, DNS_2, DNS_3
  993.         Host names or IP addresses for nameservers for this interface,
  994.         to be added to /etc/resolv.conf
  995.  
  996.      MOUNTS
  997.         A list of NFS mount points to be mounted for this interface.
  998.  
  999.      IPX_FRAME, IPX_NETNUM
  1000.         For IPX networks: the frame type and network number, passed to
  1001.         the ipx_interface command.
  1002.  
  1003.   For example:
  1004.  
  1005.        case "$ADDRESS" in
  1006.        *,*,*,*)
  1007.            IF_PORT="10base2"
  1008.            BOOTP="n"
  1009.            IPADDR="10.0.0.1"
  1010.            NETMASK="255.255.255.0"
  1011.            NETWORK="10.0.0.0"
  1012.            BROADCAST="10.0.0.255"
  1013.            GATEWAY="10.0.0.1"
  1014.            DOMAIN="domain.org"
  1015.            DNS_1="dns1.domain.org"
  1016.            ;;
  1017.        esac
  1018.  
  1019.   To automatically mount and unmount NFS filesystems, first add all
  1020.   these filesystems to /etc/fstab, but include noauto in the mount
  1021.   options.  In network.opts, list the filesystem mount points in the
  1022.   MOUNTS variable.  It is especially important to use either cardctl or
  1023.   cardinfo to shut down a network card when NFS mounts are configured
  1024.   this way.  It is not possible to cleanly unmount NFS filesystems if a
  1025.   network card is simply ejected without warning.
  1026.  
  1027.   In addition to the usual network configuration parameters, the
  1028.   network.opts script can specify extra actions to be taken after an
  1029.   interface is configured, or before an interface is shut down.  If
  1030.   network.opts defines a shell function called start_fn, it will be
  1031.   invoked by the network script after the interface is configured, and
  1032.   the interface name will be passed to the function as its first (and
  1033.   only) argument.  Similarly, if it is defined, stop_fn will be invoked
  1034.   before shutting down an interface.
  1035.  
  1036.   The transceiver type can be selected using the IF_PORT setting.  This
  1037.   can either be a numeric value as in previous PCMCIA releases, or a
  1038.   keyword identifying the transceiver type.  All the network drivers
  1039.   default to either autodetect the interface if possible, or 10baseT
  1040.   otherwise.  The ifport command can be used to check or set the current
  1041.   transceiver type.  For example:
  1042.  
  1043.        # ifport eth0 10base2
  1044.        #
  1045.        # ifport eth0
  1046.        eth0    2 (10base2)
  1047.  
  1048.   Current releases of the 3c589 driver attempt to autodetect the network
  1049.   connection, but this doesn't seem to be completely functional yet.
  1050.   For autodetection to work, the network cable should be connected to
  1051.   the card when the card is configured.  Alternatively, once the network
  1052.   is connected, you can force the driver to check the connection with:
  1053.  
  1054.        ifconfig eth0 down up
  1055.  
  1056.   4.3.2.  Comments about specific cards
  1057.  
  1058.   ╖  With IBM CCAE and Socket EA cards, you need to pick the transceiver
  1059.      type (10base2, 10baseT, AUI) when the network device is configured.
  1060.      Make sure that the transceiver type reported in the system log
  1061.      matches your connection.
  1062.  
  1063.   ╖  The drivers for SMC, Megahertz, Ositech, and 3Com cards should
  1064.      autodetect the attached network type (10base2 or 10baseT).  Setting
  1065.      the transceiver type when the driver is loaded serves to define the
  1066.      card's ``first guess''.
  1067.  
  1068.   ╖  The Farallon EtherWave is actually based on the 3Com 3c589, with a
  1069.      special transceiver.  Though the EtherWave uses 10baseT-style
  1070.      connections, its transceiver requires that the 3c589 be configured
  1071.      in 10base2 mode.
  1072.  
  1073.   ╖  If you have trouble with an IBM CCAE, NE4100, Thomas Conrad, or
  1074.      Kingston adapter, try increasing the memory access time with the
  1075.      mem_speed=# option to the pcnet_cs module.  An example of how to do
  1076.      this is given in the standard config.opts file.  Try speeds of up
  1077.      to 1000 (in nanoseconds).
  1078.  
  1079.   ╖  For the New Media Ethernet adapter, on some systems, it may be
  1080.      necessary to increase the IO port access time with the io_speed=#
  1081.      option when the pcmcia_core module is loaded.  Edit CORE_OPTS in
  1082.      the startup script  to set this option.
  1083.  
  1084.   ╖  The multicast support in the New Media Ethernet driver is
  1085.      incomplete.  The latest driver will function with multicast
  1086.      kernels, but will ignore multicast packets.  Promiscuous mode
  1087.      should work properly.
  1088.  
  1089.   ╖  The driver used by the IBM and 3Com token ring adapters seems to
  1090.      behave very badly if the cards are not connected to a ring when
  1091.      they get initialized.  Always connect these cards to the net before
  1092.      they are powered up.  This driver also requires free IO ports in
  1093.      the range of 0xa20-0xa27.  On some systems, the automatic IO port
  1094.      conflict checker will incorrectly determine that this port range is
  1095.      unavailable.  In that case, the port check can be disabled by
  1096.      loading the pcmcia_core module with probe_io=0.
  1097.  
  1098.   ╖  Newer Linksys and D-Link cards have a unique way of selecting the
  1099.      transceiver type that isn't handled by the Linux drivers.  One
  1100.      workaround is to boot DOS and use the vendor-supplied utility to
  1101.      select the transceiver, then warm boot Linux.  I am looking for
  1102.      beta testers for a Linux utility to perform this function.
  1103.  
  1104.   ╖  For WaveLAN wireless network adapters, Jean Tourrilhes
  1105.      (jt@hplb.hpl.hp.com) has put together a wireless HOWTO at
  1106.      <http://www-uk.hpl.hp.com/people/jt/Linux/Wavelan.html>.
  1107.  
  1108.   4.3.3.  Diagnosing problems with network adapters
  1109.  
  1110.   ╖  Is your card recognized as an ethernet card?  Check the system log
  1111.      and make sure that cardmgr identifies the card correctly and starts
  1112.      up one of the network drivers.  If it doesn't, your card might
  1113.      still be usable if it is compatible with a supported card.  This
  1114.      will be most easily done if the card claims to be ``NE2000
  1115.      compatible''.
  1116.  
  1117.   ╖  Is the card configured properly?  If you are using a supported
  1118.      card, and it was recognized by cardmgr, but still doesn't work,
  1119.      there might be an interrupt or port conflict with another device.
  1120.      Find out what resources the card is using (from the system log),
  1121.      and try excluding these in /etc/pcmcia/config.opts to force the
  1122.      card to use something different.
  1123.  
  1124.   ╖  If your card seems to be configured properly, but sometimes locks
  1125.      up, particularly under high load, you may need to try changing your
  1126.      socket driver timing parameters.  See section ``2.3'' for more
  1127.      information.
  1128.  
  1129.   ╖  If you get messages like ``network unreachable'' when you try to
  1130.      access the network, then you have probably set up
  1131.      /etc/pcmcia/network.opts incorrectly.  On the other hand, mis-
  1132.      configured cards will usually fail silently.
  1133.  
  1134.   ╖  To diagnose problems in /etc/pcmcia/network.opts, start by trying
  1135.      to ping other systems on the same subnet using their IP addresses.
  1136.      Then try to ping your gateway, and then machines on other subnets.
  1137.      Ping machines by name only after trying these simpler tests.
  1138.  
  1139.   ╖  Make sure your problem is really a PCMCIA one.  It may help to see
  1140.      see if the card works under DOS with the vendor's drivers.  Double
  1141.      check your modifications to the /etc/pcmcia/network.opts script.
  1142.      Make sure your drop cable, ``T'' jack, terminator, etc are working.
  1143.  
  1144.   4.4.  PCMCIA serial and modem devices
  1145.  
  1146.   Linux serial devices are accessed via the /dev/cua* and /dev/ttyS*
  1147.   special device files.  The ttyS* devices are for incoming connections,
  1148.   such as directly connected terminals.  The cua* devices are for
  1149.   outgoing connections, such as modems.  Each physical serial port has
  1150.   both a ttyS and a cua device file: it is up to you to pick the
  1151.   appropriate device for your application.  The configuration of a
  1152.   serial device can be examined and modified with the setserial command.
  1153.  
  1154.   When a PCMCIA serial or modem card is detected, it will be assigned to
  1155.   the first available serial device slot.  This will usually be
  1156.   /dev/ttyS1 (cua1) or /dev/ttyS2 (cua2), depending on the number of
  1157.   built-in serial ports.  The ttyS* device is the one reported in
  1158.   /var/run/stab.  The default serial device option script,
  1159.   /etc/pcmcia/serial.opts, will link the corresponding cua* device file
  1160.   to /dev/modem as a convenience.
  1161.  
  1162.   Do not try to use /etc/rc.d/rc.serial to configure a PCMCIA modem.
  1163.   This script should only be used to configure non-removable devices.
  1164.   Modify /etc/pcmcia/serial.opts if you want to do anything special to
  1165.   set up your modem.  Also, do not try to change the IO port and
  1166.   interrupt settings of a PCMCIA serial device using setserial.  This
  1167.   would tell the serial driver to look for the device in a different
  1168.   place, but would not change how the card hardware is actually
  1169.   configured.  The serial configuration script allows you to specify
  1170.   other setserial options, as well as whether a line should be added to
  1171.   /etc/inittab for this port.
  1172.  
  1173.   The device address passed to serial.opts has three comma-separated
  1174.   fields: the first is the scheme, the second  is the socket number, and
  1175.   the third is the device instance.  The device instance may take
  1176.   several values for cards that support multiple serial ports, but for
  1177.   single-port cards, it will always be 0.  If you commonly use more than
  1178.   one PCMCIA modem, you may want to specify different settings based on
  1179.   socket position, as in:
  1180.  
  1181.        case "$ADDRESS" in
  1182.        *,0,*)
  1183.            # Options for modem in socket 0
  1184.            LINK=/dev/modem0
  1185.            ;;
  1186.        *,1,*)
  1187.            # Options for modem in socket 1
  1188.            LINK=/dev/modem1
  1189.            ;;
  1190.        esac
  1191.  
  1192.   If a PCMCIA modem is already configured when Linux boots, it may be
  1193.   incorrectly identified as an ordinary built-in serial port.  This is
  1194.   harmless, however, when the PCMCIA drivers take control of the modem,
  1195.   it will be assigned a different device slot.  It is best to either
  1196.   parse /var/run/stab or use /dev/modem, rather than expecting a PCMCIA
  1197.   modem to always have the same device assignment.
  1198.  
  1199.   If you configure your kernel to load the basic Linux serial port
  1200.   driver as a module, you must edit /etc/pcmcia/config to indicate that
  1201.   this module must be loaded.  Edit the serial device entry to read:
  1202.  
  1203.        device "serial_cs"
  1204.          class "serial" module "misc/serial", "serial_cs"
  1205.  
  1206.   4.4.1.  Serial device parameters
  1207.  
  1208.   The following parameters can be defined in serial.opts:
  1209.  
  1210.      LINK
  1211.         Specifies a path for a symbolic link to be created to the
  1212.         ``dialout'' or /dev/cua* device.
  1213.  
  1214.      SERIAL_OPTS
  1215.         Specifies options to be passed to the setserial command.
  1216.  
  1217.      INITTAB
  1218.         If specified, this will be used to construct an inittab entry
  1219.         for the device.
  1220.  
  1221.   For example:
  1222.  
  1223.        case "$ADDRESS" in
  1224.        *,*,*,*)
  1225.            LINK="/dev/modem"
  1226.            SERIAL_OPTS=""
  1227.            INITTAB="/sbin/getty"
  1228.  
  1229.   4.4.2.  Diagnosing problems with serial devices
  1230.  
  1231.   ╖  Is your card recognized as a modem?  Check the system log and make
  1232.      sure that cardmgr identifies the card correctly and starts up the
  1233.      serial_cs driver.  If it doesn't, you may need to add a new entry
  1234.      to your /etc/pcmcia/config file so that it will be identified
  1235.      properly.  See section ``3.6'' for details.
  1236.  
  1237.   ╖  Is the modem configured successfully by serial_cs?  Again, check
  1238.      the system log and look for messages from the serial_cs driver.  If
  1239.      you see ``register_serial() failed'', you may have an I/O port
  1240.      conflict with another device.  Another tip-off of a conflict is if
  1241.      the device is reported to be an 8250; most modern PCMCIA modems
  1242.      should be identified as 16550A UART's.  If you think you're seeing
  1243.      a port conflict, edit /etc/pcmcia/config.opts and exclude the port
  1244.      range that was allocated for the modem.
  1245.  
  1246.   ╖  Is there an interrupt conflict?  If the system log looks good, but
  1247.      the modem just doesn't seem to work, try using setserial to change
  1248.      the irq to 0, and see if the modem works.  This causes the serial
  1249.      driver to use a slower polled mode instead of using interrupts.  If
  1250.      this seems to fix the problem, it is likely that some other device
  1251.      in your system is using the interrupt selected by serial_cs.  You
  1252.      should add a line to /etc/pcmcia/config.opts to exclude this
  1253.      interrupt.
  1254.  
  1255.   ╖  If the modem seems to work only very, very slowly, this is an
  1256.      almost certain indicator of an interrupt conflict.
  1257.  
  1258.   ╖  Make sure your problem is really a PCMCIA one.  It may help to see
  1259.      if the card works under DOS with the vendor's drivers.  Also, don't
  1260.      test the card with something complex like SLIP or PPP until you are
  1261.      sure you can make simple connections.  If simple things work but
  1262.      SLIP does not, your problem is most likely with SLIP, not with
  1263.      PCMCIA.
  1264.  
  1265.   ╖  If you get kernel messages indicating that the serial_cs module
  1266.      cannot be loaded, it means that your kernel does not have serial
  1267.      device support.  If you have compiled the serial driver as a
  1268.      module, you must modify /etc/pcmcia/config to indicate that the
  1269.      serial module should be loaded before serial_cs.
  1270.  
  1271.   4.5.  PCMCIA SCSI adapters
  1272.  
  1273.   All the currently supported PCMCIA SCSI cards are work-alikes of one
  1274.   of the following ISA bus cards: the Qlogic, the Adaptec AHA-152X, or
  1275.   the Future Domain TMC-16x0.  The PCMCIA drivers are built by linking
  1276.   some PCMCIA-specific code (in qlogic_cs.c, toaster_cs.c, or
  1277.   fdomain_cs.c) with the normal Linux SCSI driver.
  1278.  
  1279.   When a new SCSI host adapter is detected, the SCSI drivers will probe
  1280.   for devices.  Check the system log to make sure your devices are
  1281.   detected properly.  New SCSI devices will be assigned to the first
  1282.   available SCSI device files.  The first SCSI disk will be /dev/sda,
  1283.   the first SCSI tape will be /dev/st0, and the first CD-ROM will be
  1284.   /dev/scd0.
  1285.  
  1286.   With 1.3.X and later kernels, the PCMCIA core drivers are able to find
  1287.   out from the kernel which SCSI devices are connected to a card.  They
  1288.   will be listed in /var/run/stab, and the SCSI configuration script,
  1289.   /etc/pcmcia/scsi, will be called once for each attached device, to
  1290.   either configure or shut down that device.  The default script does
  1291.   not take any actions to configure SCSI devices, but will properly
  1292.   unmount filesystems on SCSI devices when a card is removed.
  1293.  
  1294.   With 1.2.X kernels, the PCMCIA drivers cannot automatically deduce
  1295.   which devices are associated with a particular SCSI adapter.  Instead,
  1296.   if you have one normal SCSI device configuration, you may list these
  1297.   devices in /etc/pcmcia/scsi.opts.  For example, if you normally have a
  1298.   SCSI disk and a CD-ROM, you would use:
  1299.  
  1300.        # For 1.2 kernels: list of attached devices
  1301.        SCSI_DEVICES="sda scd0"
  1302.  
  1303.   The device addresses passed to scsi.opts are complicated, because of
  1304.   the variety of things that can be attached to a SCSI adapter.
  1305.   Addresses consist of either six or seven comma-separated fields: the
  1306.   current scheme, the device type, the socket number, the SCSI channel,
  1307.   ID, and logical unit number, and optionally, the partition number.
  1308.   The device type will be ``sd'' for disks, ``st'' for tapes, ``sr'' for
  1309.   CD-ROM devices, and ``sg'' for generic SCSI devices.  For most setups,
  1310.   the SCSI channel and logical unit number will be 0.  For disk devices
  1311.   with several partitions, scsi.opts will first be called for the whole
  1312.   device, with a five-field address.  The script should set the PARTS
  1313.   variable to a list of partitions.  Then, scsi.opts will be called for
  1314.   each partition, with the longer seven-field addresses.
  1315.  
  1316.   If your kernel does not have a top-level driver (disk, tape, etc) for
  1317.   a particular SCSI device, then the device will not be configured by
  1318.   the PCMCIA drivers.  As a side effect, the device's name in
  1319.   /var/run/stab will be something like ``sd#nnnn'' where ``nnnn'' is a
  1320.   four-digit hex number.  This happens when cardmgr is unable to
  1321.   translate a SCSI device ID into a corresponding Linux device name.
  1322.  
  1323.   It is possible to modularize the top-level SCSI drivers so that they
  1324.   are only loaded when a PCMCIA SCSI adapter is detected.  To do so, you
  1325.   need to edit /etc/pcmcia/config to tell cardmgr which extra modules
  1326.   need to be loaded when your adapter is configured.  For example:
  1327.  
  1328.        device "aha152x_cs"
  1329.          class "scsi" module "scsi/scsi_mod", "scsi/sd_mod", "aha152x_cs"
  1330.  
  1331.   would say to load the core SCSI module and the top-level disk driver
  1332.   module before loading the regular PCMCIA driver module.  The PCMCIA
  1333.   Configure script will not automatically detect modularized SCSI
  1334.   modules, so you will need use the manual configure option to enable
  1335.   SCSI support.
  1336.  
  1337.   Always turn on SCSI devices before powering up your laptop, or before
  1338.   inserting the adapter card, so that the SCSI bus is properly
  1339.   terminated when the adapter is configured.  Also be very careful about
  1340.   ejecting a SCSI adapter.  Be sure that all associated SCSI devices are
  1341.   unmounted and closed before ejecting the card.  The best way to ensure
  1342.   this is to use either cardctl or cardinfo to request card removal
  1343.   before physically ejecting the card.  For now, all SCSI devices should
  1344.   be powered up before plugging in a SCSI adapter, and should stay
  1345.   connected until after you unplug the adapter and/or power down your
  1346.   laptop.
  1347.  
  1348.   There is a potential complication when using these cards that does not
  1349.   arise with ordinary ISA bus adapters.  The SCSI bus carries a
  1350.   ``termination power'' signal that is necessary for proper operation of
  1351.   ordinary passive SCSI terminators.  PCMCIA SCSI adapters do not supply
  1352.   termination power, so if it is required, an external device must
  1353.   supply it.  Some external SCSI devices may be configured to supply
  1354.   termination power.  Others, such as the Zip Drive and the Syquest EZ-
  1355.   Drive, use active terminators that do not depend on it.  In some
  1356.   cases, it may be necessary to use a special terminator block such as
  1357.   the APS SCSI Sentry 2, which has an external power supply.  When
  1358.   configuring your SCSI device chain, be aware of whether or not any of
  1359.   your devices require or can provide termination power.
  1360.  
  1361.   The Adaptec APA-460 SlimSCSI adapter is not supported.  This card was
  1362.   originally sold under the Trantor name, and when Adaptec merged with
  1363.   Trantor, they continued to sell the Trantor card with an Adaptec
  1364.   label.  The APA-460 is not compatible with any existing Linux driver.
  1365.   I'm not sure how hard it would be to write a driver; I don't think
  1366.   anyone has been able to obtain the technical information from Adaptec.
  1367.  
  1368.   The (unsupported) Trantor SlimSCSI can be identified by the following:
  1369.  
  1370.   Trantor / Adaptec APA-460 SlimSCSI
  1371.   FCC ID: IE8T460
  1372.   Shipped with SCSIworks! driver software
  1373.  
  1374.   The (supported) Adaptec SlimSCSI can be identified by the following:
  1375.  
  1376.        Adaptec APA-1460 SlimSCSI
  1377.        FCC ID: FGT1460
  1378.        P/N: 900100
  1379.        Shipped with EZ-SCSI driver software
  1380.  
  1381.   4.5.1.  SCSI device parameters
  1382.  
  1383.   The following parameters can be defined in scsi.opts:
  1384.  
  1385.      DO_FSTAB
  1386.         A boolean (y/n) setting: specifies if an entry should be added
  1387.         to /etc/fstab for this device.
  1388.  
  1389.      DO_FSCK
  1390.         A boolean (y/n) setting: specifies if the filesystem should be
  1391.         checked before being mounted, with ``fsck -Ta''.
  1392.  
  1393.      DO_MOUNT
  1394.         A boolean (y/n) setting: specifies if this device should be
  1395.         automatically mounted at card insertion time.
  1396.  
  1397.      FSTYPE, OPTS, MOUNTPT
  1398.         The filesystem type, mount options, and mount point to be used
  1399.         for the fstab entry and/or mounting the device.
  1400.  
  1401.   For example, here is a script for configuring a disk device at SCSI ID
  1402.   3, with two partitions, and a CD-ROM at SCSI ID 6:
  1403.  
  1404.   case "$ADDRESS" in
  1405.   *,sd,*,0,3,0)
  1406.       # This device has two partitions...
  1407.       PARTS="1 2"
  1408.       ;;
  1409.   *,sd,*,0,3,0,1)
  1410.       # Options for partition 1:
  1411.       #  update /etc/fstab, and mount an ext2 fs on /usr1
  1412.       DO_FSTAB="y" ; DO_FSCK="y" ; DO_MOUNT="y"
  1413.       FSTYPE="ext2"
  1414.       OPTS=""
  1415.       MOUNTPT="/usr1"
  1416.       ;;
  1417.   *,sd,*,0,3,0,2)
  1418.       # Options for partition 2:
  1419.       #  update /etc/fstab, and mount an MS-DOS fs on /usr2
  1420.       DO_FSTAB="y" ; DO_FSCK="y" ; DO_MOUNT="y"
  1421.       FSTYPE="msdos"
  1422.       OPTS=""
  1423.       MOUNTPT="/usr2"
  1424.       ;;
  1425.   *,sr,*,0,6,0)
  1426.       # Options for CD-ROM at SCSI ID 6
  1427.       PARTS=""
  1428.       DO_FSTAB="y" ; DO_FSCK="n" ; DO_MOUNT="y"
  1429.       FSTYPE="iso9660"
  1430.       OPTS="ro"
  1431.       MOUNTPT="/cdrom"
  1432.       ;;
  1433.   esac
  1434.  
  1435.   4.5.2.  Diagnosing problems with SCSI adapters
  1436.  
  1437.   ╖  With the aha152x_cs driver (used by Adaptec, New Media, and a few
  1438.      others), it seems that SCSI disconnect/reconnect support is a
  1439.      frequent source of trouble with tape drives.  To disable this
  1440.      ``feature,'' add the following to /etc/pcmcia/config.opts:
  1441.  
  1442.        module "aha152x_cs" opts "reconnect=0"
  1443.  
  1444.   ╖  If you have compiled SCSI support as modules (CONFIG_SCSI is
  1445.      ``m''), when configuring PCMCIA, you must explicitly specify that
  1446.      you want the SCSI drivers to be built.  You must also modify
  1447.      /etc/pcmcia/config to load the SCSI modules before the appropriate
  1448.      *_cs driver is loaded.
  1449.  
  1450.   ╖  If you get ``aborting command due to timeout'' messages when the
  1451.      SCSI bus is probed, you almost certainly have an interrupt
  1452.      conflict.
  1453.  
  1454.   4.6.  PCMCIA memory cards
  1455.  
  1456.   The memory_cs driver handles all types of memory cards, as well as
  1457.   providing direct access to the PCMCIA memory address space for cards
  1458.   that have other functions.  When loaded, it creates a combination of
  1459.   character and block devices.  See the man page for the module for a
  1460.   complete description of the device naming scheme.  Block devices are
  1461.   used for disk-like access (creating and mounting filesystems, etc).
  1462.   The character devices are for "raw" unbuffered reads and writes at
  1463.   arbitrary locations.
  1464.  
  1465.   The device address passed to memory.opts consists of two fields: the
  1466.   scheme, and the socket number.  The options are applied to the first
  1467.   common memory partition on the corresponding memory card.
  1468.  
  1469.   Some older memory cards, and most simple static RAM cards, lack a
  1470.   ``Card Information Structure'' (CIS), which is the scheme PCMCIA cards
  1471.   use to identify themselves.  Normally, cardmgr will assume that any
  1472.   card that lacks a CIS is a simple memory card, and load the memory_cs
  1473.   driver.  Thus, a common side effect of a general card identification
  1474.   problem is that other types of cards may be misdetected as memory
  1475.   cards.
  1476.  
  1477.   The memory_cs driver uses a heuristic to guess the capacity of these
  1478.   cards.  The heuristic does not work for write protected cards, and may
  1479.   make mistakes in some other cases as well.  If a card is misdetected,
  1480.   its size should then be explicitly specified when using commands such
  1481.   as dd or mkfs.
  1482.  
  1483.   4.6.1.  Memory device parameters
  1484.  
  1485.   The following parameters can be specified in memory.opts:
  1486.  
  1487.      DO_FSTAB
  1488.         A boolean (y/n) setting: specifies if an entry should be added
  1489.         to /etc/fstab for this device.
  1490.  
  1491.      DO_FSCK
  1492.         A boolean (y/n) setting: specifies if the filesystem should be
  1493.         checked before being mounted, with ``fsck -Ta''.
  1494.  
  1495.      DO_MOUNT
  1496.         A boolean (y/n) setting: specifies if this device should be
  1497.         automatically mounted at card insertion time.
  1498.  
  1499.      FSTYPE, OPTS, MOUNTPT
  1500.         The filesystem type, mount options, and mount point to be used
  1501.         for the fstab entry and/or mounting the device.
  1502.  
  1503.   Here is an example of a script that will automatically mount memory
  1504.   cards based on which socket they are inserted into:
  1505.  
  1506.        case "$ADDRESS" in
  1507.        *,0,0)
  1508.            # Mount filesystem, but don't update /etc/fstab
  1509.            DO_FSTAB="n" ; DO_FSCK="y" ; DO_MOUNT="y"
  1510.            FSTYPE="ext2" ; OPTS=""
  1511.            MOUNTPT="/mem0"
  1512.            ;;
  1513.        *,1,0)
  1514.            # Mount filesystem, but don't update /etc/fstab
  1515.            DO_FSTAB="n" ; DO_FSCK="y" ; DO_MOUNT="y"
  1516.            FSTYPE="ext2" ; OPTS=""
  1517.            MOUNTPT="/mem1"
  1518.            ;;
  1519.        esac
  1520.  
  1521.   4.6.2.  Using flash memory cards
  1522.  
  1523.   The device address passed to ftl.opts consists of three or four
  1524.   fields: the scheme, the socket number, the region number, and
  1525.   optionally, the partition number.  Most flash cards have just one
  1526.   flash memory region, so the region number will generally always be
  1527.   zero.
  1528.  
  1529.   To use a flash memory card as an ordinary disk-like block device,
  1530.   first create an FTL, or ``flash translation layer'', partition on the
  1531.   device with the ftl_format command.  This layer hides the device-
  1532.   specific details of flash memory programming and make the card look
  1533.   like a simple block device.  For example:
  1534.  
  1535.        ftl_format -i /dev/mem0c0c
  1536.  
  1537.   Note that this command accesses the card through the ``raw'' memory
  1538.   card interface.  Once formatted, the card can be accessed as an
  1539.   ordinary block device via the ftl_cs driver.  For example:
  1540.  
  1541.        mke2fs /dev/ftl0c0
  1542.        mount -t ext2 /dev/ftl0c0 /mnt
  1543.  
  1544.   Device naming for FTL devices is tricky.  Minor device numbers have
  1545.   three parts: the card number, the region number on that card, and
  1546.   optionally, the partition within that region.  A region can either be
  1547.   treated as a single block device with no partition table (like a
  1548.   floppy), or it can be partitioned like a hard disk device.  The
  1549.   ``ftl0c0'' device is card 0, common memory region 0, the entire
  1550.   region.  The ``ftl0c0p1'' through ``ftl0c0p4'' devices are primary
  1551.   partitions 1 through 4 if the region has been partitioned.
  1552.  
  1553.   There are two major formats for flash memory cards: the FTL style, and
  1554.   the Microsoft Flash File System.  The FTL format is generally more
  1555.   flexible because it allows any ordinary high-level filesystem (ext2,
  1556.   ms-dos, etc) to be used on a flash card as if it were an ordinary disk
  1557.   device.  The FFS is a completely different filesystem type.  Linux
  1558.   cannot currently handle cards formated with FFS.
  1559.  
  1560.   4.7.  PCMCIA ATA/IDE card drives
  1561.  
  1562.   ATA/IDE drive support requires a 1.3.72 or higher kernel.  The PCMCIA-
  1563.   specific part of the driver is fixed_cs.  Be sure to use cardctl or
  1564.   cardinfo to shut down an ATA/IDE card before ejecting it, as the
  1565.   driver has not been made ``hot-swap-proof''.
  1566.  
  1567.   The device addresses passed to fixed.opts consist of either three or
  1568.   four fields: the current scheme, the socket number, the drive's serial
  1569.   number, and an optional partition number.  The ide_info can be used to
  1570.   obtain an IDE device's serial number.  As with SCSI devices,
  1571.   fixed.opts is first called for the entire device.  If fixed.opts
  1572.   returns a list of partitions in the PARTS variable, the script will
  1573.   then be called for each partition.
  1574.  
  1575.   4.7.1.  ATA/IDE fixed-disk device parameters
  1576.  
  1577.   The following parameters can be specified in fixed.opts:
  1578.  
  1579.      DO_FSTAB
  1580.         A boolean (y/n) setting: specifies if an entry should be added
  1581.         to /etc/fstab for this device.
  1582.  
  1583.      DO_FSCK
  1584.         A boolean (y/n) setting: specifies if the filesystem should be
  1585.         checked before being mounted, with ``fsck -Ta''.
  1586.  
  1587.      DO_MOUNT
  1588.         A boolean (y/n) setting: specifies if this device should be
  1589.         automatically mounted at card insertion time.
  1590.  
  1591.      FSTYPE, OPTS, MOUNTPT
  1592.         The filesystem type, mount options, and mount point to be used
  1593.         for the fstab entry and/or mounting the device.
  1594.  
  1595.   Here is an example fixed.opts file to mount the first partition of any
  1596.   ATA/IDE card on /mnt.
  1597.  
  1598.        case "$ADDRESS" in
  1599.        *,*,*)
  1600.            PARTS="1"
  1601.            ;;
  1602.        *,*,*,1)
  1603.            DO_FSTAB="y" ; DO_FSCK="y" ; DO_MOUNT="y"
  1604.            FSTYPE="msdos"
  1605.            OPTS=""
  1606.            MOUNTPT="/mnt"
  1607.            ;;
  1608.        esac
  1609.  
  1610.   4.7.2.  Diagnosing problems with ATA/IDE adapters
  1611.  
  1612.   ╖  Some IDE drives violate the PCMCIA specification by requiring a
  1613.      longer time to spin up than the maximum allowed card setup time.
  1614.      To use these cards, load the pcmcia_core module with:
  1615.  
  1616.        CORE_OPTS="unreset_delay=400"
  1617.  
  1618.   ╖  To use an ATA/IDE CD-ROM device, your kernel must be compiled with
  1619.      CONFIG_BLK_DEV_IDECD enabled.  This will normally be the case for
  1620.      standard kernels, however it is something to be aware of if you
  1621.      compile a custom kernel.
  1622.  
  1623.   4.8.  Multifunction cards
  1624.  
  1625.   Starting with the 1.3.73 Linux kernel, a single interrupt can be
  1626.   shared by several drivers, such as the serial driver and an ethernet
  1627.   driver.  When using a multifunction card under a newer kernel, all
  1628.   card functions can be used without loading and unloading drivers.
  1629.  
  1630.   Simultaneous use of two card functions is ``tricky'' and various
  1631.   hardware vendors have implemented interrupt sharing in their own
  1632.   incompatible (and sometimes proprietary) ways.  The drivers for some
  1633.   cards (Ositech Jack of Diamonds, 3Com 3c562, Linksys) properly support
  1634.   simultaneous access, but others (Megahertz in particular) do not.
  1635.  
  1636.   Earlier kernels do not support interrupt sharing between different
  1637.   device drivers, so it is not possible for the PCMCIA drivers to
  1638.   configure this card for simultaneous ethernet and modem access.  The
  1639.   ethernet and serial drivers are both loaded automatically.  However,
  1640.   the ethernet driver ``owns'' the card interrupt by default.  To use
  1641.   the modem, you can unload the ethernet driver and reconfigure the
  1642.   serial port by doing something like:
  1643.  
  1644.        ifconfig eth0 down
  1645.        rmmod 3c589_cs
  1646.        setserial /dev/modem autoconfig auto_irq
  1647.        setserial /dev/modem
  1648.  
  1649.   The second setserial should verify that the port has been configured
  1650.   to use the interrupt previously used by the ethernet driver.
  1651.  
  1652.   5.  Advanced topics
  1653.  
  1654.   5.1.  Resource allocation for PCMCIA devices
  1655.  
  1656.   In theory, it should not really matter which interrupt is allocated to
  1657.   which device, as long as two devices are not configured to use the
  1658.   same interrupt.  In /etc/pcmcia/config.opts you'll find a place for
  1659.   excluding interrupts that are used by non-PCMCIA devices.
  1660.  
  1661.   Similarly, there is no way to directly specify the I/O addresses for a
  1662.   PCMCIA card to use.  The /etc/pcmcia/config.opts file allows you to
  1663.   specify ranges of ports available for use by all PCMCIA devices, or to
  1664.   exclude ranges that conflict with other devices.
  1665.  
  1666.   After modifying /etc/pcmcia/config.opts, you can restart cardmgr with
  1667.   ``kill -HUP''.
  1668.  
  1669.   The interrupt used to monitor card status changes is chosen by the
  1670.   low-level socket driver module (i82365 or tcic) before cardmgr parses
  1671.   /etc/pcmcia/config, so it is not affected by changes to this file.  To
  1672.   set this interrupt, use the cs_irq= option when the socket driver is
  1673.   loaded, by setting the PCIC_OPTS variable in /etc/rc.d/rc.pcmcia.
  1674.  
  1675.   All the client card drivers have a parameter called irq_list for
  1676.   specifying which interrupts they may try to allocate.  These driver
  1677.   options should be set in your /etc/pcmcia/config file.  For example:
  1678.  
  1679.        device "serial_cs"
  1680.          module "serial_cs" opts "irq_list=8,12"
  1681.          ...
  1682.  
  1683.   would specify that the serial driver should only use irq 8 or irq 12.
  1684.   Regardless of irq_list settings, Card Services will never allocate an
  1685.   interrupt that is already in use by another device, or an interrupt
  1686.   that is excluded in the config file.
  1687.  
  1688.   5.2.  How can I have separate device setups for home and work?
  1689.  
  1690.   This is fairly easy using PCMCIA ``scheme'' support.  Use two
  1691.   configuration schemes, called ``home'' and ``work''.  Here is an
  1692.   example of a network.opts script with scheme-specific settings:
  1693.  
  1694.        case "$ADDRESS" in
  1695.        work,*,*,*)
  1696.            # definitions for network card in work scheme
  1697.            ...
  1698.            ;;
  1699.        home,*,*,*|default,*,*,*)
  1700.            # definitions for network card in home scheme
  1701.            ...
  1702.            ;;
  1703.        esac
  1704.  
  1705.   The first part of a PCMCIA device address is always the configuration
  1706.   scheme.  In this example, the second ``case'' clause will select for
  1707.   both the ``home'' and ``default'' schemes.  So, if the scheme is unset
  1708.   for any reason, it will default to the ``home'' setup.
  1709.  
  1710.   Now, to choose between the two sets of settings, run either:
  1711.  
  1712.        cardctl scheme home
  1713.  
  1714.   or
  1715.  
  1716.        cardctl scheme work
  1717.  
  1718.   The cardctl command does the equivalent of shutting down all your
  1719.   cards and restarting them.  The command can be safely executed whether
  1720.   or not the PCMCIA system is loaded, but the command may fail if you
  1721.   are using other PCMCIA devices at the time (even if their
  1722.   configurations are not explicitly dependant on the scheme setting).
  1723.  
  1724.   To find out the current PCMCIA scheme setting, run:
  1725.  
  1726.        cardctl scheme
  1727.  
  1728.   5.3.  Booting from a PCMCIA device
  1729.  
  1730.   Having the root filesystem on a PCMCIA device is tricky because the
  1731.   Linux PCMCIA system is not designed to be linked into the kernel.  Its
  1732.   core components, the loadable kernel modules and the user mode cardmgr
  1733.   daemon, depend on an already running system.  The kernel's ``initrd''
  1734.   facility works around this requirement by allowing Linux to boot using
  1735.   a temporary ram disk as a minimal root image, load drivers, and then
  1736.   re-mount a different root filesystem.  The temporary root can
  1737.   configure PCMCIA devices and then re-mount a PCMCIA device as root.
  1738.  
  1739.   The initrd image absolutely must reside on a bootable device: this
  1740.   generally cannot be put on a PCMCIA device.  This is a BIOS
  1741.   limitation, not a kernel limitation.  It is useful here to distinguish
  1742.   between ``boot-able'' devices (i.e., devices that can be booted), and
  1743.   ``root-able'' devices (i.e., devices that can be mounted as root).
  1744.   ``Boot-able'' devices are determined by the BIOS, and are generally
  1745.   limited to internal floppy and hard disk drives.  ``Root-able''
  1746.   devices are any block devices that the kernel supports once it has
  1747.   been loaded.  The initrd facility makes more devices ``root-able'',
  1748.   not ``boot-able''.
  1749.  
  1750.   Some Linux distributions will allow installation to a device connected
  1751.   to a PCMCIA SCSI adapter, as an unintended side-effect of their
  1752.   support for installs from PCMCIA SCSI CD-ROM devices.  However, at
  1753.   present, no Linux installation tools support configuring an
  1754.   appropriate ``initrd'' to boot Linux with a PCMCIA root filesystem.
  1755.   Setting up a system with a PCMCIA root thus requires that you use
  1756.   another Linux system to create the ``initrd'' image.  If another Linux
  1757.   system is not available, another option would be to temporarily
  1758.   install a minimal Linux setup on a non-PCMCIA drive, create an initrd
  1759.   image, and then reinstall to the PCMCIA target.
  1760.  
  1761.   The Linux Bootdisk-HOWTO has some general information about setting up
  1762.   boot disks but nothing specific to initrd.  The main initrd document
  1763.   is included with recent kernel source code distributions, in
  1764.   linux/Documentation/initrd.txt.  Before beginning, you should read
  1765.   this document.  A familiarity with lilo is also helpful.  Using initrd
  1766.   also requires that you have a kernel compiled with CONFIG_BLK_DEV_RAM
  1767.   and CONFIG_BLK_DEV_INITRD enabled.
  1768.  
  1769.   This is an advanced configuration technique, and requires a high level
  1770.   of familiarity with Linux and the PCMCIA system.  Be sure to read all
  1771.   the relevant documentation before starting.  The following cookbook
  1772.   instructions should work, but deviations from the examples will
  1773.   quickly put you in uncharted and ``unsupported'' territory, and you
  1774.   will be on your own.
  1775.  
  1776.   This method absolutely requires that you use a PCMCIA driver release
  1777.   of 2.9.5 or later.  Older PCMCIA packages or individual components
  1778.   will not work in the initrd context.  Do not mix components from
  1779.   different releases.
  1780.  
  1781.   5.3.1.  The pcinitrd helper script
  1782.  
  1783.   The pcinitrd script creates a basic initrd image for booting with a
  1784.   PCMCIA root partition.  The image includes a minimal directory
  1785.   heirarchy, a handful of device files, a few binaries, shared
  1786.   libraries, and a set of PCMCIA driver modules.  When invoking
  1787.   pcinitrd, you specify the driver modules that you want to be included
  1788.   in the image.  The core PCMCIA components, pcmcia_core and ds, are
  1789.   automatically included.
  1790.  
  1791.   As an example, say that your laptop uses an i82365-compatible PCMCIA
  1792.   host controller, and you want to boot Linux with the root filesystem
  1793.   on a hard drive attached to an Adaptec SlimSCSI adapter.  You could
  1794.   create an appropriate initrd image with:
  1795.  
  1796.        pcinitrd -v initrd pcmcia/i82365.o pcmcia/aha152x_cs.o
  1797.  
  1798.   To customize the initrd startup sequence, you could mount the image
  1799.   using the ``loopback'' device with a command like:
  1800.  
  1801.        mount -o loop -t ext2 initrd /mnt
  1802.  
  1803.   and then edit the linuxrc script.  The PCMCIA configuration files will
  1804.   be installed under /etc in the image, and can also be customized.  See
  1805.   the man page for pcinitrd for more information.
  1806.  
  1807.   5.3.2.  Creating an initrd boot floppy
  1808.  
  1809.   After creating an image with pcinitrd, you can create a boot floppy by
  1810.   copying the kernel, the compressed initrd image, and a few support
  1811.   files for lilo to a clean floppy.  In the following example, we assume
  1812.   that the desired PCMCIA root device is /dev/sda1:
  1813.  
  1814.        mke2fs /dev/fd0
  1815.        mount /dev/fd0 /mnt
  1816.        mkdir /mnt/etc /mnt/boot /mnt/dev
  1817.        cp -a /dev/fd0 /dev/sda1 /mnt/dev
  1818.        cp [kernel-image] /mnt/vmlinuz
  1819.        gzip < [initrd-image] > /mnt/initrd
  1820.  
  1821.   Create /mnt/etc/lilo.conf with the contents:
  1822.  
  1823.        boot=/dev/fd0
  1824.        compact
  1825.        image=/vmlinuz
  1826.            label=linux
  1827.            initrd=/initrd
  1828.            read-only
  1829.            root=/dev/sda1
  1830.  
  1831.   Finally, invoke lilo with:
  1832.  
  1833.   lilo -r /mnt
  1834.  
  1835.   When lilo is invoked with -r, it performs all actions relative to the
  1836.   specified alternate root directory.  The reason for creating the
  1837.   device files under /mnt/dev was that lilo will not be able to use the
  1838.   files in /dev when it is running in this alternate-root mode.
  1839.  
  1840.   5.3.3.  Installing an initrd image on a non-Linux drive
  1841.  
  1842.   One common use of the initrd facility would be on systems where the
  1843.   internal hard drive is dedicated to another operating system.  The
  1844.   Linux kernel and initrd image can be placed in a non-Linux partition,
  1845.   and lilo or LOADLIN can be set up to boot Linux from these images.
  1846.  
  1847.   Assuming that you have a kernel has been configured for the
  1848.   appropriate root device, and an initrd image created on another
  1849.   system, the easiest way to get started is to boot Linux using LOADLIN,
  1850.   as:
  1851.  
  1852.        LOADLIN <kernel> initrd=<initrd-image>
  1853.  
  1854.   Once you can boot Linux on your target machine, you could then install
  1855.   lilo to allow booting Linux directly.  For example, say that /dev/hda1
  1856.   is the non-Linux target partition and /mnt can be used as a mount
  1857.   point.  First, create a subdirectory on the target for the Linux
  1858.   files:
  1859.  
  1860.        mount /dev/hda1 /mnt
  1861.        mkdir /mnt/linux
  1862.        cp [kernel-image] /mnt/linux/vmlinuz
  1863.        cp [initrd-image] /mnt/linux/initrd
  1864.  
  1865.   In this example, say that /dev/sda1 is the desired Linux root
  1866.   partition, a SCSI hard drive mounted via a PCMCIA SCSI adapter.  To
  1867.   install lilo, create a lilo.conf file with the contents:
  1868.  
  1869.        boot=/dev/hda
  1870.        map=/mnt/linux/map
  1871.        compact
  1872.        image=/mnt/linux/vmlinuz
  1873.                label=linux
  1874.                root=/dev/sda1
  1875.                initrd=/mnt/linux/initrd
  1876.                read-only
  1877.        other=/dev/hda1
  1878.                table=/dev/hda
  1879.                label=windows
  1880.  
  1881.   The boot= line says to install the boot loader in the master boot
  1882.   record of the specified device.  The root= line identifies the desired
  1883.   root filesystem to be used after loading the initrd image, and may be
  1884.   unnecessary if the kernel image is already configured this way.  The
  1885.   other= section is used to describe the other operating system
  1886.   installed on /dev/hda1.
  1887.  
  1888.   To install lilo in this case, use:
  1889.  
  1890.        lilo -C lilo.conf
  1891.  
  1892.   Note that in this case, the lilo.conf file uses absolute paths that
  1893.   include /mnt.  I did this in the example because the target filesystem
  1894.   may not support the creation of Linux device files for the boot= and
  1895.   root= options.
  1896.  
  1897.   6.  Dealing with unsupported cards
  1898.  
  1899.   6.1.  Configuring unrecognized cards
  1900.  
  1901.   Assuming that your card is supported by an existing driver, all that
  1902.   needs to be done is to add an entry to /etc/pcmcia/config to tell
  1903.   cardmgr how to identify the card, and which driver(s) need to be
  1904.   linked up to this card.  Check the man page for pcmcia for more
  1905.   information about the config file format.  If you insert an unknown
  1906.   card, cardmgr will normally record some identification information in
  1907.   the system log that can be used to construct the config entry.
  1908.  
  1909.   Here is an example of how cardmgr will report an unsupported card in
  1910.   /usr/adm/messages.
  1911.  
  1912.        cardmgr[460]: unsupported card in socket 1
  1913.        cardmgr[460]: version info: "MEGAHERTZ", "XJ2288", "V.34 PCMCIA MODEM"
  1914.  
  1915.   The corresponding entry in /etc/pcmcia/config would be:
  1916.  
  1917.        card "Megahertz XJ2288 V.34 Fax Modem"
  1918.          version "MEGAHERTZ", "XJ2288", "V.34 PCMCIA MODEM"
  1919.          bind "serial_cs"
  1920.  
  1921.   You can use ``*'' to match strings that don't need to match exactly,
  1922.   like version numbers.  When making new config entries, be careful to
  1923.   copy the strings exactly, preserving case and blank spaces.  Also be
  1924.   sure that the config entry has the same number of strings as are
  1925.   reported in the log file.
  1926.  
  1927.   Beware that you can specify just about any driver for a card, but if
  1928.   you're just shooting in the dark, there is not much reason to expect
  1929.   this to be productive.  You may get lucky and find that your card is
  1930.   supported by an existing driver.  However, the most likely outcome is
  1931.   that the driver won't work, and may have unfortunate side effects like
  1932.   locking up your system.  Unlike most ordinary device drivers, which
  1933.   probe for an appropriate card, the probe for a PCMCIA device is done
  1934.   by cardmgr, and the driver itself may not do much validation before
  1935.   attempting to communicate with the device.
  1936.  
  1937.   After editing /etc/pcmcia/config, you can signal cardmgr to reload the
  1938.   file with:
  1939.  
  1940.        kill -HUP `cat /var/run/cardmgr.pid`
  1941.  
  1942.   If you do set up an entry for a new card, please send me a copy so
  1943.   that I can include it in the standard config file.
  1944.  
  1945.   6.2.  Adding support for an NE2000-compatible ethernet card
  1946.  
  1947.   First, see if the card is already recognized by cardmgr.  Some cards
  1948.   not listed in SUPPORTED.CARDS are actually OEM versions of cards that
  1949.   are supported.  If you find a card like this, let me know so I can add
  1950.   it to the list.
  1951.  
  1952.   If your card is not recognized, follow the instructions in section
  1953.   ``3.6'' to create a config entry for your card, and bind the card to
  1954.   the pcnet_cs driver.  Restart cardmgr to use the updated config file.
  1955.  
  1956.   If the pcnet_cs driver says that it is unable to determine your card's
  1957.   hardware ethernet address, then edit your new config entry to bind the
  1958.   card to the memory card driver, memory_cs.  Restart cardmgr to use the
  1959.   new updated config file.  You will need to know your card's hardware
  1960.   ethernet address.  This address is a series of six two-digit hex
  1961.   numbers, often printed on the card itself.  If it is not printed on
  1962.   the card, you may be able to use a DOS driver to display the address.
  1963.   In any case, once you know it, run:
  1964.  
  1965.        dd if=/dev/mem0a count=20 | od -Ax -t x1
  1966.  
  1967.   and search the output for your address.  Only the even bytes are
  1968.   defined, so ignore the odd bytes in the dump.  Record the hex offset
  1969.   of the first byte of the address.  Now, edit modules/pcnet_cs.c and
  1970.   find the hw_info structure.  You'll need to create a new entry for
  1971.   your card.  The first field is the memory offset.  The next three
  1972.   fields are the first three bytes of the hardware address.  The final
  1973.   field contains some flags for specific card features; to start, try
  1974.   setting it to 0.
  1975.  
  1976.   After editing pcnet_cs.c, compile and install the new module.  Edit
  1977.   /etc/pcmcia/config again, and change the card binding from memory_cs
  1978.   to pcnet_cs.  Follow the instructions for reloading the config file,
  1979.   and you should be all set.  Please send me copies of your new hw_info
  1980.   and config entries.
  1981.  
  1982.   If you can't find your card's hardware address in the hex dump, as a
  1983.   method of last resort, it is possible to ``hard-wire'' the address
  1984.   when the pcnet_cs module is initialized.  Edit /etc/pcmcia/config.opts
  1985.   and add a hw_addr= option, like so:
  1986.  
  1987.        module "pcnet_cs" opts "hw_addr=0x00,0x80,0xc8,0x01,0x02,0x03"
  1988.  
  1989.   Substitute your own card's hardware address in the appropriate spot,
  1990.   of course.  Beware that if you've gotten this far, it is very unlikely
  1991.   that your card is genuinely NE2000 compatible.  In fact, I'm not sure
  1992.   if there are any cards that are not handled by one of the first two
  1993.   methods.
  1994.  
  1995.   6.3.  PCMCIA floppy interface cards
  1996.  
  1997.   The PCMCIA floppy interface used in the Compaq Aero and a few other
  1998.   laptops is not yet supported by this package.  The snag in supporting
  1999.   the Aero floppy is that the Aero seems to use a customized PCMCIA
  2000.   controller to support DMA to the floppy.  Without knowing exactly how
  2001.   this is done, there isn't any way to implement support under Linux.
  2002.  
  2003.   If the floppy adapter card is present when an Aero is booted, the Aero
  2004.   BIOS will configure the card, and Linux will identify it as a normal
  2005.   floppy drive.  When the Linux PCMCIA drivers are loaded, they will
  2006.   notice that the card is already configured and attached to a Linux
  2007.   driver, and this socket will be left alone.  So, the drive can be used
  2008.   if it is present at boot time, but the card is not hot swappable.
  2009.  
  2010.   6.4.  What's up with support for Xircom cards?
  2011.  
  2012.   A driver for Xircom ethernet and ethernet/modem cards is included in
  2013.   the current PCMCIA package, thanks to the work of Werner Koch.  I've
  2014.   set up a HyperNews forum specifically for discussion of Xircom driver
  2015.   development, at
  2016.   <http://hyper.stanford.edu/HyperNews/get/pcmcia/xircom.html>.
  2017.  
  2018.   For a long time, Xircom cards were not supported because Xircom had a
  2019.   company policy of not disclosing technical information about their
  2020.   cards.  However, they have relaxed their rules, and now, they do
  2021.   distribute driver information.
  2022.  
  2023.   7.  Debugging tips and programming information
  2024.  
  2025.   7.1.  Submitting useful bug reports
  2026.  
  2027.   The best way to submit bug reports is to use the HyperNews message
  2028.   lists on the Linux PCMCIA information site.  That way, other people
  2029.   can see current problems (and fixes or workarounds, if available).
  2030.   Here are some things that should be included in all bug reports:
  2031.  
  2032.   ╖  Your system type, and the output of the probe command.
  2033.  
  2034.   ╖  What PCMCIA cards you are using.
  2035.  
  2036.   ╖  Your Linux kernel version, and PCMCIA driver version.
  2037.  
  2038.   ╖  Any changes you have made to the startup files in /etc/pcmcia, or
  2039.      to the PCMCIA startup script.
  2040.  
  2041.   ╖  All PCMCIA-related messages in your system log file.
  2042.  
  2043.   All the PCMCIA modules and the cardmgr daemon send status messages to
  2044.   the system log.  This will usually be something like /var/log/messages
  2045.   or /usr/adm/messages.  This file should be the first place to look
  2046.   when tracking down a problem.  When submitting a bug report, always
  2047.   include the contents of this file.  If you are having trouble finding
  2048.   your system messages, check /etc/syslogd.conf to see how different
  2049.   classes of messages are handled.
  2050.  
  2051.   Before submitting a bug report, please check to make sure that you are
  2052.   using an up-to-date copy of the driver package.  While it is somewhat
  2053.   gratifying to read bug reports for things I've already fixed, it isn't
  2054.   a particularly constructive use of my time.
  2055.  
  2056.   If your problem involves a kernel fault, the register dump from the
  2057.   fault is only useful if you can track down the fault address, EIP.  If
  2058.   it is in the main kernel, look up the address in System.map to
  2059.   identify the function at fault.  If the fault is in a loadable module,
  2060.   it is a bit harder to trace.  With the current module tools, ``ksyms
  2061.   -m'' will report the base address of each loadable module.  Pick the
  2062.   module that contains the EIP address, and subtract its base address
  2063.   from EIP to get an offset inside that module.  Then, run gdb on that
  2064.   module, and look up the offset with the list command.  This will only
  2065.   work if you've compiled that module with -g to include debugging
  2066.   information.
  2067.  
  2068.   If you do not have web access, bug reports can be sent to me at
  2069.   dhinds@hyper.stanford.edu.  However, I prefer that bug reports be
  2070.   posted to my web site, so that they can be seen by others.
  2071.  
  2072.   7.2.  Low level PCMCIA debugging aids
  2073.  
  2074.   The PCMCIA modules contain a lot of conditionally-compiled debugging
  2075.   code.  Most of this code is under control of the PCMCIA_DEBUG
  2076.   preprocessor define.  If this is undefined, debugging code will not be
  2077.   compiled.  If set to 0, the code is compiled but inactive.  Larger
  2078.   numbers specify increasing levels of verbosity.  Each module built
  2079.   with PCMCIA_DEBUG defined will have an integer parameter, pc_debug,
  2080.   that controls the verbosity of its output.  This can be adjusted when
  2081.   the module is loaded, so output can be controlled on a per-module
  2082.   basis without recompiling.
  2083.  
  2084.   There are a few debugging tools in the debug_tools/ subdirectory of
  2085.   the PCMCIA distribution.  The dump_tcic and dump_i365 utilities
  2086.   generate complete register dumps of the PCMCIA controllers, and decode
  2087.   a lot of the register information.  They are most useful if you have
  2088.   access to a datasheet for the corresponding controller chip.  The
  2089.   dump_tuples utility lists a card's CIS (Card Information Structure),
  2090.   and decodes some of the important bits.  And the dump_cisreg utility
  2091.   displays a card's local configuration registers.
  2092.  
  2093.   The memory_cs memory card driver is also sometimes useful for
  2094.   debugging.  It can be bound to any PCMCIA card, and does not interfere
  2095.   with other drivers.  It can be used to directly access any card's
  2096.   attribute memory or common memory.
  2097.  
  2098.   7.3.  Writing Card Services drivers for new cards
  2099.  
  2100.   The Linux PCMCIA Programmer's Guide is the best documentation for the
  2101.   Linux PCMCIA interface.  The latest version is always available from
  2102.   hyper.stanford.edu in /pub/pcmcia/doc, or on the web at
  2103.   <http://hyper.stanford.edu/HyperNews/get/pcmcia/home.html>.
  2104.  
  2105.   For devices that are close relatives of normal ISA devices, you'll
  2106.   probably be able to use parts of existing Linux drivers.  In some
  2107.   cases, the biggest stumbling block will be modifying an existing
  2108.   driver so that it can handle adding and removing devices after boot
  2109.   time.  Of the current drivers, the memory card driver is the only
  2110.   ``self-contained'' driver that does not depend on other parts of the
  2111.   Linux kernel to do most of the dirty work.
  2112.  
  2113.   In many cases, the largest barrier to supporting a new card type is
  2114.   obtaining technical information from the manufacturer.  It may be
  2115.   difficult to figure out who to ask, or to explain exactly what
  2116.   information is needed.  However, with a few exceptions, it is very
  2117.   difficult if not impossible to implement a driver for a card without
  2118.   technical information from the manufacturer.
  2119.  
  2120.   I've written a skeleton driver with lots of comments that explains a
  2121.   lot of how a driver communicates with Card Services; you'll find this
  2122.   in the PCMCIA source distribution in modules/skeleton.c.
  2123.  
  2124.   7.4.  Guidelines for PCMCIA client driver authors
  2125.  
  2126.   I have decided that it is not really feasible for me to distribute all
  2127.   PCMCIA client drivers as part of the PCMCIA package.  Each new driver
  2128.   makes the main package incrementally harder to maintain, and including
  2129.   a driver inevitably transfers some of the maintenance work from the
  2130.   driver author to me.  Instead, I will decide on a case by case basis
  2131.   whether or not to include contributed drivers, based on user demand as
  2132.   well as maintainability.  For drivers not included in the core
  2133.   package, I suggest that driver authors adopt the following scheme for
  2134.   packaging their drivers for distribution.
  2135.  
  2136.   Driver files should be arranged in the same directory scheme used in
  2137.   the PCMCIA source distribution, so that the driver can be unpacked on
  2138.   top of a complete PCMCIA source tree.  A driver should include source
  2139.   files (in ./modules/), a man page (in ./man/), and configuration files
  2140.   (in ./etc/).  The top level directory should also include a README
  2141.   file.
  2142.  
  2143.   The top-level directory should include a makefile, set up so that
  2144.   ``make -f ... all'' and ``make -f ... install'' compile the driver and
  2145.   install all appropriate files.  If this makefile is given an extension
  2146.   of .mk, then it will automatically be invoked by the top-level
  2147.   Makefile for the all and install targets.  Here is an example of how
  2148.   such a makefile could be constructed:
  2149.  
  2150.        # Sample Makefile for contributed client driver
  2151.        FILES = sample_cs.mk README.sample_cs \
  2152.                modules/sample_cs.c modules/sample_cs.h \
  2153.                etc/sample etc/sample.opts man/sample_cs.4
  2154.        all:
  2155.                $(MAKE) -C modules MODULES=sample_cs.o
  2156.        install:
  2157.                $(MAKE) -C modules install-modules MODULES=sample_cs.o
  2158.                $(MAKE) -C etc install-clients CLIENTS=sample
  2159.                $(MAKE) -C man install-man4 MAN4=sample_cs.4
  2160.        dist:
  2161.                tar czvf sample_cs.tar.gz $(FILES)
  2162.  
  2163.   This makefile uses install targets defined in 2.9.10 and later
  2164.   versions of the PCMCIA package.  This makefile also includes a
  2165.   ``dist'' target for the convenience of the driver author.  You would
  2166.   probably want to add a version number to the final package filename
  2167.   (for example, sample_cs-1.5.tar.gz).  A complete distribution could
  2168.   look like:
  2169.  
  2170.        sample_cs.mk
  2171.        README.sample_cs
  2172.        modules/sample_cs.c
  2173.        modules/sample_cs.h
  2174.        etc/sample
  2175.        etc/sample.opts
  2176.        man/sample_cs.4
  2177.  
  2178.   With this arrangement, when the contributed driver is unpacked, it
  2179.   becomes essentially part of the PCMCIA source tree.  It can make use
  2180.   of the PCMCIA header files, as well as the machinery for checking the
  2181.   user's system configuration, and automatic dependency checking, just
  2182.   like a ``normal'' client driver.
  2183.  
  2184.   I will accept client drivers prepared according to this specification
  2185.   and place them in the /pub/pcmcia/contrib directory on my FTP server,
  2186.   hyper.stanford.edu.  The README in this directory will describe how to
  2187.   unpack a contributed driver.
  2188.  
  2189.   The PCMCIA client driver interface has not changed much over time, and
  2190.   has almost always preserved backwards compatibility.  A client driver
  2191.   will not normally need to be updated for minor revisions in the main
  2192.   PCMCIA package.  I will try to notify authors of contributed drivers
  2193.   of changes that require updates to their drivers.
  2194.  
  2195.   7.5.  Guidelines for Linux distribution maintainers
  2196.  
  2197.   If your distribution has system configuration tools that you would
  2198.   like to be PCMCIA-aware, please use the *.opts files in /etc/pcmcia
  2199.   for your ``hooks.''  These files will not be modified if a user
  2200.   compiles and installs a new release of the PCMCIA package.  If you
  2201.   modify the main configuration scripts, then a fresh PCMCIA install
  2202.   will silently overwrite your custom scripts and break the connection
  2203.   with your configuration tools.  Contact me if you are not sure how to
  2204.   write an appropriate option script.
  2205.  
  2206.   It is helpful for users (and for me) if you can document how your
  2207.   distribution deviates from the PCMCIA package as described in this
  2208.   document.  In particular, please document changes to the startup
  2209.   script and configuration scripts.
  2210.  
  2211.   When building PCMCIA for distribution, you should consider including
  2212.   contributed drivers that are not part of the main PCMCIA package.  For
  2213.   reasons of maintainability, I am trying to limit the core package
  2214.   size, by only adding new drivers if I think they are of particularly
  2215.   broad interest.  Other drivers will be distributed separately, as
  2216.   described in the previous section.  The split between integral and
  2217.   separate drivers is somewhat arbitrary and partly historical, and
  2218.   should not imply a difference in quality.
  2219.  
  2220.